使用 MySQL 续集 Op.iLike 抛出错误
Sequelize Op.iLike throwing Error with MySQL
Error: Invalid value { undefined: 'w%' }
这是我的查询:
results = await models.Record.findAll({
where: {
name: {
[Op.iLike]: prefix + "%", //causing problems
},
},
order: [["createdAt", "DESC"]],
limit: num,
});
name 是我的 MySQL table.
中的一个字符串字段
您在 'ILIKE' 'james'
附近的 SQL 语法中有一个错误。 ORM 似乎将查询转换为 ILIKE,这是无效的。
sequelize 应该与 ILike for mysql 一起使用 link 最后
你不能改用Op.startsWith
结果=等待models.Record.findAll({
其中:{
name: {
[Op.startsWith]: prefix,
},
},
order: [["createdAt", "DESC"]],
limit: num,
});
更多字符串函数参见 manual
[Op.like]: '%hat', // LIKE '%hat'
[Op.notLike]: '%hat', // NOT LIKE '%hat'
[Op.startsWith]: 'hat', // LIKE 'hat%'
[Op.endsWith]: 'hat', // LIKE '%hat'
[Op.substring]: 'hat', // LIKE '%hat%'
[Op.iLike]: '%hat', // ILIKE '%hat' (case insensitive) (PG only)
[Op.notILike]: '%hat', // NOT ILIKE '%hat' (PG only)
[Op.regexp]: '^[h|a|t]', // REGEXP/~ '^[h|a|t]' (MySQL/PG only)
[Op.notRegexp]: '^[h|a|t]', // NOT REGEXP/!~ '^[h|a|t]' (MySQL/PG only)
[Op.iRegexp]: '^[h|a|t]', // ~* '^[h|a|t]' (PG only)
[Op.notIRegexp]: '^[h|a|t]', // !~* '^[h|a|t]' (PG only)
Error: Invalid value { undefined: 'w%' }
这是我的查询:
results = await models.Record.findAll({
where: {
name: {
[Op.iLike]: prefix + "%", //causing problems
},
},
order: [["createdAt", "DESC"]],
limit: num,
});
name 是我的 MySQL table.
中的一个字符串字段您在 'ILIKE' 'james'
附近的 SQL 语法中有一个错误。 ORM 似乎将查询转换为 ILIKE,这是无效的。
sequelize 应该与 ILike for mysql 一起使用 link 最后
你不能改用Op.startsWith
结果=等待models.Record.findAll({ 其中:{
name: {
[Op.startsWith]: prefix,
},
},
order: [["createdAt", "DESC"]],
limit: num,
});
更多字符串函数参见 manual
[Op.like]: '%hat', // LIKE '%hat'
[Op.notLike]: '%hat', // NOT LIKE '%hat'
[Op.startsWith]: 'hat', // LIKE 'hat%'
[Op.endsWith]: 'hat', // LIKE '%hat'
[Op.substring]: 'hat', // LIKE '%hat%'
[Op.iLike]: '%hat', // ILIKE '%hat' (case insensitive) (PG only)
[Op.notILike]: '%hat', // NOT ILIKE '%hat' (PG only)
[Op.regexp]: '^[h|a|t]', // REGEXP/~ '^[h|a|t]' (MySQL/PG only)
[Op.notRegexp]: '^[h|a|t]', // NOT REGEXP/!~ '^[h|a|t]' (MySQL/PG only)
[Op.iRegexp]: '^[h|a|t]', // ~* '^[h|a|t]' (PG only)
[Op.notIRegexp]: '^[h|a|t]', // !~* '^[h|a|t]' (PG only)