1602 / 1602/jugglingdb

JSON fields are not returned as an object (when stored as a string)

未关闭
#227 4 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
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 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。