我正在使用水线处理表格,我只是将字段表单字符串更改为关系船,现在当我运行它时出现错误[Error (E_UNKNOWN) Encountered an unexpected error] Details: TypeError: Cannot read property '_getPK' of undefined
之前(物品型号):
attributes: { store: 'string' ....}
更改为(项目模型):
attributes: {store: {model: 'state'} ....}
在状态模型下:
attributes: { items: {collection: 'item', via: 'store' }}
提前谢谢各位
编辑:
我已经降级到sails-mongo@beta
并且一切正常。我不确定为什么会这样。