यदि आप dimension
को सहेजना चाहते हैं मान, सबसे पहले आपको अपने डेटाबेस में उस ऑब्जेक्ट को प्राप्त करने के लिए कॉल करना होगा जिससे आप डेटा निकालना चाहते हैं।
const _ = require('lodash')
const Setting = mongoose.model('settings');
module.exports.dimension = (req, res, next) => {
Setting.findOne({ _id: req._id },
(err, setting) => {
if (!setting)
return res.status(404).json({ status: false, message: 'Setting not found' });
else
return res.status(200).json({ status: true, setting: _.pick(setting, ['dimension']) });
}
);
}