I have tried to save an object to database:
Item = persistence.define('Item', {
imageUrl: "TEXT",
})
this is working,the imageUrl is set correctly:
var c = new Item({imageUrl: "a"});
this is not working, imageUrl is empty in the db
var c = new Item();
c.imageUrl = "a";
this is working:
var c = new Item();
c._data.imageUrl = "a";
Seems like a bug.