0
ich eine Eins-zu viele Beziehung zu retten versuche Meine ModelleBookshelf.js speichern one to many Beziehung
Foo
foo = bookshelf.Model.extend({
tableName: 'foo',
bar: function() {
return this.hasMany('bar', 'barId');
}
Bar
bar = bookshelf.Model.extend({
tableName: 'bar',
foo: function() {
return this.belongsTo('foo', 'barId');
}
sind Was Ich versuche zu tun
var Foo = { id: 7 }
new Bar({ blah: blah.val })
.foo()
.attach(foo);
Der Fehler Ich erhalte
(intermediate value).foo().attach is not a function
Jede Hilfe wird geschätzt.