Skip to content

Sequelize 不区分大小写查找数据

Published: at 02:22 PMSuggest Changes
const findData = await Assets.findOne({
  where: {
    barCode: {
      [Op.like]: `%${getCode}%`,
    },
  },
});

Previous Post
JS 通过 input 加载 PDF
Next Post
Electron 中编译安装 Sqlite3 的方法与问题排查