JSON fields are not returned as an object (when stored as a string)
未关闭
- 主要语言
- JavaScript
- 星标
- 2k
- 派生
- 238
- PR 合并指标
- 30 天内没有已合并 PR
描述
At the moment i need to use for every JSON field this code before storing an item:
``` javascript
User.validate('settings', function(err) {
if (typeof this.settings !== 'object') {
try {
this.settings= JSON.parse(this.settings);
} catch (e) {
err();
}
}
}, {
message: 'Invalid JSON'
});
```
Would be nice if there would exist a function that does that automatically and throws an error when the field can't be converted to an object.
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。