我有一个图像模型和一个位置模型。图像模型包含位置的外键。要获取结果,我使用:
fetch({withRelated: ['location']};
我收到了以下结果:
{
"id": 24,
"created_by": 1,
"location_id": 202,
"location": {}
}
但我想要的是:
{
"id": 24,
"created_by": 1,
"location": {....}
}
我的图像模型:
objectProperties = {
tableName: 'images',
location: function () {
return this.hasOne(location, 'id');
}
};
classProperties = {};
imageModel = bookshelf.Model.extend(objectProperties, classProperties);
和我的位置模型:
objectProperties = {
tableName: 'locations',
images: function () {
return this.belongsToMany(image, 'location_id');
}
};
classProperties = {};
locationModel = bookshelf.Model.extend(objectProperties, classProperties);
为什么我会收到一个空位置对象?
答案 0 :(得分:2)
你在模特中的关系是错误的。您将belongsToMany(仅用于m:n关系)与hasOne结合使用(不能与belongsToMany一起使用)。从你的问题不清楚这两个表有什么样的关系,所以我无法进一步帮助你。但问题不在于相关但在模型定义中。希望这会有所帮助。
答案 1 :(得分:0)
查看以下示例
person:id_person,name,id_country withlated country:id_country,name,id_province 和withRelated 省:id_province,name
确定生成模型人,国家和省
person.js
'use strict'
const Bookshelf = require('../commons/bookshelf');
const Country = require('./country');
let Person = Bookshelf.Model.extend({
tableName: 'person',
idAttribute: 'id_person',
country: function() {
return this.belongsTo(Country, 'id_country');
}
});
module.exports = Bookshelf.model('Person', Person);
country.js
'use strict'
const Bookshelf = require('../commons/bookshelf');
const Province = require('./province');
let Country = Bookshelf.Model.extend({
tableName: 'country',
idAttribute: 'id_country',
province: function() {
return this.belongsTo(Province, 'id_province');
}
});
module.exports = Bookshelf.model('Country', Country);
province.js
'use strict'
const Bookshelf = require('../commons/bookshelf');
let Province = Bookshelf.Model.extend({
tableName: 'province',
idAttribute: 'id_province'
});
module.exports = Bookshelf.model('Province', Province);
with collections person.js
'use strict'
const Bookshelf = require('../commons/bookshelf');
const Person = require('../models/person');
const Persons = Bookshelf.Collection.extend({
model: Person
});
module.exports = Persons;
with controller person.js
'use strict';
const Persons = require('../collections/persons');
const Person = require('../models/person');
function getPersons(req, res, next) {
Motivos.query({})
.fetch({
withRelated: [
'country',
'country.province'
] })
.then(function(data) {
return res.status(200).json({
error: false,
data: data
});
});
}
json是
{
"error":false,
"data":[{
"id_person": 1,
"name": "leonardo",
"id_country": 3,
"country":{
"id_country": 3,
"name":"venezuela",
"id_province": 2,
"province":{
"id_province": 2,
"name":"lara"
}
}
},{...}]
}