gpt4 book ai didi

node.js - Sequelize - 如何使用几何值为数据库播种?

转载 作者:行者123 更新时间:2023-11-29 12:02:52 25 4
gpt4 key购买 nike

我使用 Sequelize 连接到我的 PostgreSQL 数据库,在开发过程中,我使用种子文件用示例数据填充数据库。我最近为我的数据库安装了 PostGIS,并希望使用 GEOMETRY('POINT') 类型来描述纬度/经度位置。

但是,我不知道如何使用播种器放置一些 GEOMETRY 数据。我尝试按照 Sequelize docs 中的示例进行操作:

module.exports = {
up: (queryInterface, Sequelize) =>
queryInterface.bulkInsert('Vets', [{
title: 'Centrum Zdrowia Małych Zwierząt',
city: 'Poznań',
googleMapsID: 'ChIJQ8EgpGpDBEcR1d0wYZTGPbI',
position: {
type: 'Point',
coordinates: [52.458415, 16.904740]
},
rodents: true
}], {}),
down: (queryInterface, Sequelize) =>
queryInterface.bulkDelete('Vets', null, {})
};

但是当我运行 sequelize db:seed:all 命令时,出现以下错误:

错误:无效值 [object Object]

我想我只需要以其他方式指定位置,但 Sequelize 文档没有提及任何种子。谁能帮我解决这个问题?

Vets数据库的迁移文件如下:

module.exports = {
up: (queryInterface, Sequelize) => queryInterface.createTable('Vets', {
...
rodents: {
type: Sequelize.BOOLEAN
},
position: {
type: Sequelize.GEOMETRY
},
websiteUrl: {
type: Sequelize.STRING
},
...
}, {
indexes: [
{
unique: true,
fields: ['title', 'city']
}
]
}),
down: (queryInterface, Sequelize) =>
queryInterface.dropTable('Vets')
};

模型定义:

module.exports = (sequelize, DataTypes) => {
const Vet = sequelize.define('Vet', {
...
rodents: {
type: DataTypes.BOOLEAN,
defaultValue: false
},
position: DataTypes.GEOMETRY('POINT'),
websiteUrl: DataTypes.STRING,
...
}, {
indexes: [
{
unique: true,
fields: ['title', 'city']
}
]
});

Vet.associate = (models) => {
Vet.belongsTo(models.User, { as: 'suggestedBy' });
Vet.belongsTo(models.User, { as: 'acceptedBy' });
};

return Vet;
};

最佳答案

我找到了一个解决方案(或者更确切地说是一个解决方法),结果我需要使用 Sequelize.fn():

module.exports = {
up: (queryInterface, Sequelize) =>
queryInterface.bulkInsert('Vets', [
{
...
position: Sequelize.fn('ST_GeomFromText', 'POINT(52.458415 16.904740)'),
...
}
], {}),
down: (queryInterface, Sequelize) =>
queryInterface.bulkDelete('Vets', null, {})
};

关于node.js - Sequelize - 如何使用几何值为数据库播种?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47044077/

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