4

我正在创建一个表来存储用户会话。我将使用以下方法将IP 地址存储为整数: 存储为 int 的 IP 地址会导致溢出?

我想为 IP 字段指定一个 getter 和 setter,以便它可以在 IP 和 int 之间自动转换。

不幸的是,我收到以下错误,我不知道发生了什么。我已经尝试修复它几个小时了,谷歌没有给我任何结果:

RangeError: Maximum call stack size exceeded

模型:

model = db.define(name, {
    id: {type: Sequelize.STRING, allowNull: false, primaryKey: true},
    ipAddress: {type: Sequelize.INTEGER(11).UNSIGNED, allowNull: false},
    userAgent: {type: Sequelize.STRING, allowNull: false},
    username: {type: Sequelize.STRING, allowNull: false},
    password: {type: Sequelize.STRING, allowNull: false},
    firstName: {type: Sequelize.STRING, allowNull: false},
    lastName: {type: Sequelize.STRING, allowNull: false},
    email: {type: Sequelize.STRING}
}, {
    getterMethods: {
        name: function() { return this.firstName + this.lastName },
        ipAddress: function() {
            ip = this.getDataValue("ipAddress");
            return ((ip >> 24) & 255) + "." + ((ip >> 16) & 255) + "." + ((ip >> 8) & 255) + "." + (ip & 255);
        }
    },
    setterMethods: {
        ipAddress: function(ip) {
            var parts = ip.split(".");
            var ret = 0;
            ret += parseInt(parts[0], 10) << 24;
            ret += parseInt(parts[1], 10) << 16;
            ret += parseInt(parts[2], 10) << 8;
            ret += parseInt(parts[3], 10);
            return ret;
        }
    }
});

插入IP:

model.findOrCreate({id: sessionId}, {
    id: sessionId,
    ipAddress: req.ip, // === "192.168.1.79"
    userAgent: req.get("user-agent"),
    username: "test",
    password: "test",
    firstName: "first",
    lastName: "last",
    email: "email"
})

我可以确认 getter/setter 代码确实可以根据需要进行转换,但它在 Sequelize 中无法正常运行。

4

3 回答 3

5

我也遇到了 Sequelize 的这个问题。我正在阅读和重新阅读官方文档,在互联网上搜索所有我知道的地方,我终于在这里结束了。一旦我发现你的问题,没有答案,我决定搜索 Sequelize 本身的源代码。果然,我找到了答案!

如果您查看sequelize/test/dao-factory.test.jsSequelize 源代码中的文件,您会发现潜伏在测试用例中的以下代码:

setterMethods: {
  price1: function(v) { this.setDataValue('price1', v * 100) }
},

我复制了上面的语法,在我自己的 setter 方法中使用它,它可以工作!

他们真的应该更新 sequelize 网站上的文档.. 嗯.. 也许我应该考虑帮助他们解决这个问题?无论如何,祝你好运!

于 2013-10-08T02:52:03.640 回答
1

我有类似的情况,我以这种方式解决

const ProductImages = db.define('product_images', {
    product_image_id: {type: Sequelize.INTEGER, primaryKey: true, 
    autoIncrement: true},
    url: Sequelize.TEXT,
    product_id: Sequelize.INTEGER,
    is_primary: Sequelize.INTEGER,
}, {
    timestamps: false,

getterMethods: {
    is_primary() {
        return parseInt(this.dataValues.is_primary)
    },

},
scopes: {

    byDefault() {
         return {
             include: [{
                 model: ProductDescriptions, as: 
                   'product_description', where: {language_id: 1}
             }]
         };
       },

    }

 })

 module.exports = ProductImages;

当我调用 this.davaValues.column_name 时,它​​不会为该列调用递归 getterMethod

于 2017-09-27T07:05:11.463 回答
1

我不知道是否有人仍在运行此错误,但如果您遇到问题,这就是我解决问题的方法。

我有一个类似的情况,我有一个看起来像这样的 UserModel 对象:

var UserModel = sequelize.define("users", {
    ID: {
        type: Sequelize.INTEGER,
        field: "ID",
        primaryKey: true,
        autoIncrement: true
    },
    Username: {
        type: Sequelize.STRING,
        field: "Username"
    },
    Password: {
        type: Sequelize.STRING,
        field: "Password"
    },
    Sector: {
        type: Sequelize.INTEGER,
        field: "Sector"
    },
    SubSector: {
        type: Sequelize.INTEGER,
        field: "SubSector"
    },
    Email: {
        type: Sequelize.STRING,
        field: "email"
    },
    Status: {
        type: Sequelize.INTEGER,
        field: "status"
    }
}

我的 setter 和 getter 是:

{
    getterMethods: {
        Sector:  function() {
            return this.Sector;
        },
        Status:  function() {
            return this.Status;
        }
    },
    setterMethods: {
        Sector:  function(val) {
            this.setDataValue('Sector',val);
        },
        Status: function(val) {
            this.setDataValue('Status',val);
        }
    }
});

当然,我遇到了堆栈错误。

为了解决这个问题,我刚刚将我的 setter 和 getter 更改为:

 {
    getterMethods: {
        currSector:  function() {
            return this.Sector;
        },
        currStatus:  function() {
            return this.Status;
        }
    },
    setterMethods: {
        newSector:  function(val) {
            this.setDataValue('Sector',val);
        },
        newStatus: function(val) {
            this.setDataValue('Status',val);
        }
    }
});

尽管在网上的许多示例中,我看到人们建议提供与字段相同的 setter / getter 名称的方法,但一切都非常顺利。

因此,简而言之,更改为 setter 和 getter 名称以便它们的名称与任何定义的字段都不匹配解决了我的问题。好习惯?我不确定,但它解决了我的问题。

于 2016-03-18T17:17:42.803 回答