对于下面的代码,我得到的结果有时是一个数组,有时是一个对象。我想接收数组,即使它是空的。
export const GetByPId = async (userId, pId) => knex('table1').where({ userId, pId }).select(
'userId',
'pId',
'id',
'created',
'updated',
);
在我的业务对象中,我等待响应
static async LoadByPId(userId, pId) {
const data = await GetByPId(userId, pId);
console.log(`result ${JSON.stringify(data)}`);
}
一旦它返回
[{ userId: 1, id: 1 ...
- 我想要这个
下次再回来
{ userId: 1, id: 1 ...
- 不想要这个
发生了什么,我怎样才能让它始终返回一个数组?
更新 #1
现在它只返回一个结果。
更新 #2
情况越来越糟。
现在我的其他基本功能无法正常工作。Knex 仅适用于第一组参数,其他所有参数都失败。
例如,如果快速服务器重新启动并发送 userId: 1 和 pId: 1 的请求,则它可以工作。如果我使用相同的参数重复相同的请求,它可以工作。但是,如果我将参数(即用户 ID 或 pId)更改为另一个有效集,它将失败。在尝试任何其他参数之前,我必须重新启动快速服务器。我在我的应用程序和邮递员上对此进行了测试。
我的快速代码如下所示
router.post('/list', auth, async (req, res) => {
try {
const biz= await BizObj.LoadByPId(req.user.id, req.body.pId);
res.json(biz);
} catch (ex) {
console.log(ex);
res.status(400).json('Unauthorized');
}
});
更新 #4
万一我的膝盖配置有问题
development: {
client: 'postgresql',
connection: {
database: 'somedb',
user: 'SOMEUSER',
password: '',
timezone: 'UTC',
},
pool: {
min: 2,
max: 10,
},
migrations: {
tableName: 'knex_migrations',
},
},
更新 #5 单页代码(仅缺少快速设置)
in pg db/SomeObj
id userId
1 1
2 2
3 2
代码示例
import knex from 'knex';
import express from 'express';
const config = {
development: {
client: 'pg',
connection: {
database: 'somedb',
user: 'SOMEUSER',
password: '',
timezone: 'UTC',
},
pool: {
min: 2,
max: 10,
},
migrations: {
tableName: 'knex_migrations',
},
},
};
const knexed = knex(config.development);
const SQL = knexed('SomeObj');
const GetAll = async userId => SQL.where({ userId }).select(
'id',
'userId',
);
const GetById = async (userId, id) => SQL.where({ userId, id }).first(
'id',
'userId',
);
class SomeObj {
constructor(data, userId) {
this.userId = userId;
this.id = data.id;
}
static async LoadAll(userId) {
const data = await GetAll(userId);
if (!data || data.length === 0) return null;
return data.map(r => new SomeObj(r, userId));
}
static async Load(userId, id) {
const data = await GetById(userId, id);
if (!data) return null;
return new SomeObj(data, userId);
}
}
const router = express.Router();
router.post('/list', async (req, res) => {
try {
const res1 = await SomeObj.LoadAll(req.body.id); // works and returns array
const res2 = await SomeObj.Load(req.body.id, 2); // fails and returns undefined
res.json({ res1, res2 });
} catch (ex) {
res.status(401).json(ex);
}
});
无法运行第二个查询。不知道我是否缺少一些简单的关闭连接的东西。
更新 #6
我发誓膝盖在惹我。每次我尝试某些事情(并恢复以确认更改是由于我的新输入),都会有不同的响应。现在,res1 和 res2 都返回第一个请求的正确结果,但第二个请求失败。
更新 #7
运行套件示例:https://runkit.com/tristargod/runkit-npm-knex
它针对第一个请求运行,但对于快速服务器上的所有其他请求失败。
更新 #8
有关更多详细信息,请参阅 https://github.com/tgriesser/knex/issues/2346#issuecomment-346757344。谢谢米凯尔!
knex('table1')
.where({ userId, pId })
.select('userId', 'pId', 'id', 'created', 'updated')
应始终返回结果数组。您正在做其他错误的事情,这些错误未显示在示例中。
示例代码:https://runkit.com/embed/kew7v2lwpibn
对更新 #7 的响应
TLDR;Knex 查询生成器是可变的,因此当重用它们时,.clone() 是必要的。https://runkit.com/mikaelle/5a17c6d99cd063001284a20a
很好的例子,从中很容易发现问题
您正在多次重用同一查询生成器,而不会在查询之间克隆它。如果在设置环境变量的情况下运行代码DEBUG=knex:*
则会发现构造的查询在第一次调用后不正确。
const GetAll = async userId => SQL.clone().where({ userId }).select(
'id',
'userId',
);
const GetById = async (userId, id) => SQL.clone().where({ userId, id }).first(
'id',
'userId',
);
我在种子设定中也遇到了奇怪的行为,它会显示为 json 属性数组,但当我添加 [0] 时[0].id
将未定义,导致错误.id
例如:await knex('contracts').select('id')[0]
这是因为必须等待承诺,然后您可以获取数据,如果您在一行中完成所有操作,则您正在尝试对承诺执行这些操作。
更清洁一点的方法:
const { id: contract_id } = await knex('contracts').select('id').first();