作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我定义了一个对象 A,我需要在其中存储一些对象。
如何将查询结果分配给对象的属性。
这是我的示例代码。
function A(Job){
this.job = Job;
this.location ={};
models.locations.findOne({
where:{
job_id:this.job.id
}
}).then(function(location){
//what should i do here to store it in A.locaiton
}
}
最佳答案
将 this
的引用保存到 that
属性(或您喜欢的任何其他名称)中,然后使用 that.location
。例如:
function A(Job) {
var that = this;
that.job = Job;
that.location = {};
models.locations.findOne({
where: {
job_id: this.job.id
}
}).then(function (location) {
that.location = location;
});
}
关于node.js - 如何将 sequelize 的查询结果分配给对象的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43475250/
我是一名优秀的程序员,十分优秀!