我想使用Blueprint路由来使用“add to”和“remove to”关联路由。
我有两个模型:
库存:
module.exports = {
attributes: {
keys: {
collection: 'key',
via: 'stockpile'
}
}
};
和密钥:
module.exports = {
attributes: {
name: {
type: 'string',
defaultsTo: 'noname'
},
stockpile: {
model: 'stockpile'
}
}
};
我有一个ID为1的仓库和一把ID为1的钥匙。但当我这么做的时候:
邮政/库存/1/钥匙/1
我有一个404错误。其余蓝图路由已启用。
我做错什么了?
当做,
西尔万
最佳答案
在你的窗户上吗?如果是,那就是aknown bug。