dex icon indicating copy to clipboard operation
dex copied to clipboard

#multi

Open yields opened this issue 11 years ago • 0 comments

ignore request failure by default so that if a single item fails to save, other items can be saved.

unless .multi() is used.

dex()
.set('foo', [])
.set('baz', {})
.end(function(){});

if one of those fails the other should be saved.

dex()
.multi()
.set('foo', [])
.set('baz', {})
.end(function(){});

if one of those fails nothing should be saved.

yields avatar Nov 06 '13 16:11 yields