用Node+KneX+Postgres处理模型和模型方法

ovfsdjhp  于 2022-10-15  发布在  PostgreSQL
关注(0)|答案(1)|浏览(120)

我希望能得到一些帮助。我刚刚开始在Node应用程序中使用postgres,我很想知道如何处理模型和模型方法。在模型和方法方面使用Node和Postgres时,最佳实践是什么?我环顾四周,我能找到的只有一种叫做反对的东西,但我真的有必要走这条路吗?
理想情况下,我希望每个组件都有一个模型.js文件,但在处理Postgres+Node时,我还没有看到它们被使用过。
如有任何帮助,我们不胜感激。谢谢大家,希望你们都度过了一个美好的感恩节!

gajydyqb

gajydyqb1#

假设查看器可以理解基本的Java脚本模块,并且代码大多是自解释的

这是我的模型.js文件

module.exports = ({
 knex = require('./connection'),
 name = '',
 tableName = '',
 selectableProps = [],
 timeout = 1000
}) => {
    const query = knex.from(tableName)

    const create = props => {
      delete props.id
      return knex.insert(props)
        .returning(selectableProps)
        .into(tableName)
        .timeout(timeout)
    }
    const findAll = () => {
      return knex.select(selectableProps)
        .from(tableName)
        .timeout(timeout)
    }
    const find = filters => {
      return knex.select(selectableProps)
        .from(tableName)
        .where(filters)
        .timeout(timeout)
    }

    const update = (id, props) => {
      delete props.id

      return knex.update(props)
        .from(tableName)
        .where({
          id
        })
        .returning(selectableProps)
        .timeout(timeout)
    }

    const destroy = id => {
      return knex.del()
        .from(tableName)
        .where({
          id
        })
        .timeout(timeout)
    }

    return {
      query,
      name,
      tableName,
      selectableProps,
      timeout,
      create,
      findAll,
      find,
      update,
      destroy
    }
  }

这是我的控制程序.js文件

const model = require('./model');

const user = model({
 name: "users",
 tableName: "tbl_users",
});

const getAllUsers = async (req, res, next)=>{
 let result = await user.findAll();
 res.send(result);
}

module.exports = { getAllUsers }

最后是Connection.js文件

const knex = require('knex')({
client: 'pg',
connection: {
  host: 'YOUR_HOST_ADDR',
  user: 'YOUR_USERNAME',
  password: 'YOUR_PASS',
  database: 'YOUR_DB_NAME'
},
pool: {
  min: 0,
  max: 7
}
});

module.exports = knex;

相关问题