nomanHasan
9/15/2017 - 9:37 PM

app.component.ts


  //This method will get called on Create button event
  
  create() {
    this.todoService.createTodo(this.newTodo)
      .subscribe((res) => {
        this.todosList.push(res.data)
        this.newTodo = new ToDo()
      })
  }