gpt4 book ai didi

express - 在 sequelize instanceMethods 中访问属性

转载 作者:行者123 更新时间:2023-12-03 22:42:35 25 4
gpt4 key购买 nike

我正在向 sequelize 模型添加一个实例方法。根据the documentation我应该能够引用 this.name,但我能看到的唯一值是 this.dataValues.name。我没有理由相信高质量的文档是错误的……但是为什么会发生这种情况呢?

此外,没有可用的 setter 或 getter。 this.getDataValue/this.setDataValue 在 getter/setter 中工作,但不在 instanceMethods 中。

我在网上找不到任何相关示例 - 如果您知道一个项目可以读取(或更好地写入)这些值,请将其添加到您的回复中。

module.exports = (sequelize: Sequelize, DataTypes: DataTypes) => {
return sequelize.define<UserInstance, UserPojo>('User', {
name: { type: DataTypes.STRING }
}, {
instanceMethods: {
myMethod: (value) => {

// this.name is undefined

// this.dataValues.name IS defined ??

}
}, ...

最佳答案

正如您可能看到的,我正在使用 Typescript。我刚刚检查了生成的 Javascript,并立即发现了问题。

typescript 把它放在模块的顶部:

var _this = this;

并且引用了“_this”,而不是函数上下文中的那个——没有意识到这一点!一旦我将其更改为传统的 function() { } 语法,它就起作用了。所以,如果你使用 typescript ,你可以这样做:
myMethod: function(value: type) => void {

}

也就是说,您不必放弃输入参数和返回值。

关于express - 在 sequelize instanceMethods 中访问属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31308850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com