不要怂,就是干,撸起袖子干!

update.ejs 196 Bytes
// way 1
task.title = 'a very different title now'
task.save().on('success', function() {})

// way 2
task.updateAttributes({
  title: 'a very different title now'
}).on('success', function() {})