脾气暴躁的`nestRemoting()`有时找不到关系
Temperamental `nestRemoting()` sometimes can't find relation
我正在实施(没有很好记录的)环回方法 nestRemoting()
如下:
module.exports = function(MyModel) {
MyModel.on('attached', function() {
MyModel.nestRemoting('relationName');
});
}
不过这样看起来很有气质。有时它有效,但大多数时候我得到:
Relation `relationName` does not exist for model `MyModel`
at ....stacktrace....
.....
有谁知道为什么会出现此错误?
所以,我在 posting 后不久就找到了解决方案 - 你只能在模型 attatched
之后做 nestRemoting
... 而不是 attached
。简单的拼写错误可以解决所有问题。
也许这个 post 会帮助其他人尝试嵌套端点。
我正在实施(没有很好记录的)环回方法 nestRemoting()
如下:
module.exports = function(MyModel) {
MyModel.on('attached', function() {
MyModel.nestRemoting('relationName');
});
}
不过这样看起来很有气质。有时它有效,但大多数时候我得到:
Relation `relationName` does not exist for model `MyModel`
at ....stacktrace....
.....
有谁知道为什么会出现此错误?
所以,我在 posting 后不久就找到了解决方案 - 你只能在模型 attatched
之后做 nestRemoting
... 而不是 attached
。简单的拼写错误可以解决所有问题。
也许这个 post 会帮助其他人尝试嵌套端点。