我有一个包含许多路由对象的用户对象。
我像这样加载它们:
return User.find(username).then(function(user) {
return User.loadRelations(user.username, ['routes'])
.then(function(user) {
return user;
});
});
我希望能够去 user.routes.push(newRoute) 然后保存用户。但我无法推出新路线。