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

You need to sign in or sign up before continuing.
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() {})