<tfoot id='VqhYL'></tfoot>
  1. <legend id='VqhYL'><style id='VqhYL'><dir id='VqhYL'><q id='VqhYL'></q></dir></style></legend>

  2. <i id='VqhYL'><tr id='VqhYL'><dt id='VqhYL'><q id='VqhYL'><span id='VqhYL'><b id='VqhYL'><form id='VqhYL'><ins id='VqhYL'></ins><ul id='VqhYL'></ul><sub id='VqhYL'></sub></form><legend id='VqhYL'></legend><bdo id='VqhYL'><pre id='VqhYL'><center id='VqhYL'></center></pre></bdo></b><th id='VqhYL'></th></span></q></dt></tr></i><div id='VqhYL'><tfoot id='VqhYL'></tfoot><dl id='VqhYL'><fieldset id='VqhYL'></fieldset></dl></div>

    1. <small id='VqhYL'></small><noframes id='VqhYL'>

        <bdo id='VqhYL'></bdo><ul id='VqhYL'></ul>

      如何将对象作为数据类型传递给 sequilize 中的数据模型?

      时间:2023-09-03

      • <i id='oLVUJ'><tr id='oLVUJ'><dt id='oLVUJ'><q id='oLVUJ'><span id='oLVUJ'><b id='oLVUJ'><form id='oLVUJ'><ins id='oLVUJ'></ins><ul id='oLVUJ'></ul><sub id='oLVUJ'></sub></form><legend id='oLVUJ'></legend><bdo id='oLVUJ'><pre id='oLVUJ'><center id='oLVUJ'></center></pre></bdo></b><th id='oLVUJ'></th></span></q></dt></tr></i><div id='oLVUJ'><tfoot id='oLVUJ'></tfoot><dl id='oLVUJ'><fieldset id='oLVUJ'></fieldset></dl></div>
      • <tfoot id='oLVUJ'></tfoot>

              <bdo id='oLVUJ'></bdo><ul id='oLVUJ'></ul>
                <tbody id='oLVUJ'></tbody>
              <legend id='oLVUJ'><style id='oLVUJ'><dir id='oLVUJ'><q id='oLVUJ'></q></dir></style></legend>

              1. <small id='oLVUJ'></small><noframes id='oLVUJ'>

              2. 本文介绍了如何将对象作为数据类型传递给 sequilize 中的数据模型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我需要传递一些不是原始数据类型的东西.

                I need to pass something that is not a primitive to the data type.

                我正在构造这样的东西来发送到 create 方法:

                I am constructing something like this to send to the create method:

                const p2 = {
                          location_model: {
                          latitude: lat,
                           longitude: lng
                      },
                        establishment_id: createdEstablishment.id
                      }
                

                如您所见,integer_id 是 Integer 类型,但 location_model 是一个对象

                As you can see the establishment_id is of type Integer but the location_model is an object

                这是我的模特

                module.exports = {
                  up: (queryInterface, DataTypes) => {
                    return queryInterface.createTable('EstablishmentLocation', {
                      location_model: {
                        type: // need some datatype that accept's an object of that type
                        allowNull: false,
                        references: {
                          model: 'Location',
                          key: 'id',
                        },
                      },
                      establishment_id: {
                        type: DataTypes.INTEGER,
                        allowNull: false,
                        references: {
                          model: 'Establishment',
                          key: 'id',
                        },
                      },
                      createdAt: {
                        allowNull: false,
                        type: DataTypes.STRING,
                        defaultValue: DataTypes.STRING,
                      },
                      updatedAt: {
                        allowNull: false,
                        type: DataTypes.STRING,
                        defaultValue: DataTypes.STRING,
                      }
                    });
                  },
                
                  down: (queryInterface) => {
                    return queryInterface.dropTable('EstablishmentLocation');
                  }
                };
                

                我的问题是,如何在 sequilize 中将对象传递给数据类型?

                My question is, how can I pass an object to a data type in sequilize?

                推荐答案

                您在模型中提供的 type 是您使用的数据库中定义的类型.如果你使用 postgresql,你可以使用 DataTypes.JSON 作为类型.

                The type you provide in the model are the types defined in the database you use. If you are using postgresql, you can use DataTypes.JSON as the type.

                如果没有,要保存对象,您可以JSON.stringify对象并将其作为字符串传递.

                If not, to save object, you can JSON.stringify the object and pass it as a string.

                这篇关于如何将对象作为数据类型传递给 sequilize 中的数据模型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:节点续集 - “按原样"插入日期无需转换为 UTC 下一篇:Sequelize update 不再起作用:“在传递给 update 的选项参数中缺少 where 属性"

                相关文章

                    <bdo id='oOkfb'></bdo><ul id='oOkfb'></ul>

                1. <tfoot id='oOkfb'></tfoot>
                    <legend id='oOkfb'><style id='oOkfb'><dir id='oOkfb'><q id='oOkfb'></q></dir></style></legend>

                    <i id='oOkfb'><tr id='oOkfb'><dt id='oOkfb'><q id='oOkfb'><span id='oOkfb'><b id='oOkfb'><form id='oOkfb'><ins id='oOkfb'></ins><ul id='oOkfb'></ul><sub id='oOkfb'></sub></form><legend id='oOkfb'></legend><bdo id='oOkfb'><pre id='oOkfb'><center id='oOkfb'></center></pre></bdo></b><th id='oOkfb'></th></span></q></dt></tr></i><div id='oOkfb'><tfoot id='oOkfb'></tfoot><dl id='oOkfb'><fieldset id='oOkfb'></fieldset></dl></div>

                    <small id='oOkfb'></small><noframes id='oOkfb'>