Как добавить пользовательское свойство для модели в jugglingdb и вернуть его через JSON
Как добавить пользовательское свойство в модель jugglingdb? Я хочу определить пользовательское свойство специально вместо пользовательского метода, потому что я хочу вернуть его клиенту.
Вот пример использования вездесущей модели Post:
дБ / schema.js:
var Post = schema.define('Post', {
title: { type: String, length: 255 },
content: { type: Schema.Text },
date: { type: Date, default: function () { return new Date;} },
timestamp: { type: Number, default: Date.now },
published: { type: Boolean, default: false, index: true }
});
приложение / модели / post.js:
var moment = require('moment');
module.exports = function (compound, Post) {
// I'd like to populate the property in here.
Post.prototype.time = '';
Post.prototype.afterInitialize = function () {
// Something like this:
this.time = moment(this.date).format('hh:mm A');
};
}
Я хотел бы вернуть это так в app / controllers / posts_controller.js:
action(function index() {
Post.all(function (err, posts) {
// Error handling omitted for succinctness.
respondTo(function (format) {
format.json(function () {
send({ code: 200, data: posts });
});
});
});
});
Ожидаемые результаты:
{
code: 200,
data: [
{
title: '10 things you should not do in jugglingdb',
content: 'Number 1: Try to create a custom property...',
date: '2013-08-13T07:55:45.000Z',
time: '07:55 AM',
[...] // Omitted data
},
[...] // Omitted additional records
}
Вещи, которые я пробовал в app / models / post.js:
Попытка 1:
Post.prototype.afterInitialize = function () {
Object.defineProperty(this, 'time', {
__proto__: null,
writable: false,
enumerable: true,
configurable: true,
value: moment(this.date).format('hh:mm A')
});
this.__data.time = this.time;
this.__dataWas.time = this.time;
this._time = this.time;
};
Это вернет post.time в консоли через compound c
, но не на post.toJSON()
,
Попытка 2:
Post.prototype.afterInitialize = function () {
Post.defineProperty('time', { type: 'String' });
this.__data.time = moment(this.date).format('hh:mm A');
};
Эта попытка была многообещающей... она дала ожидаемый результат через .toJSON()
, Однако, как я и опасался, он также пытался обновить базу данных этим полем.
1 ответ
В настоящее время существует небольшая проблема, которая не позволяет печатать значение (оно просто отображает time:
только), но я пошел вперед и сделал запрос на это здесь.
В противном случае, опуская часть прототипа на afterInitialize
Был успешен:
Post.afterInitialize = function () {
this.time = moment(this.date).format('hh:mm A'); // Works with toJSON()
this.__data.time = this.time; // Displays the value using console c
};