我正试图为我的Express后端编写一个"注册"验证器。我正在使用AJV。很明显,我想将验证器模式导出为一个模块,所以我将按照AJV文档中的这一页进行操作。然而,我一直得到:TypeError: standaloneCode is not a function
这是我的代码:
const Ajv = require("ajv")
const ajv = new Ajv({ code: { source: true } })
const standaloneCode = require("ajv/dist/standalone")
const signupSchema = {
type: "object",
properties: {
username: { type: "string" },
email: { type: "string" },
password: { type: "string" },
confirmPassword: { type: "string" },
},
required: ["username", "email", "password", "confirmPassword"],
}
const validate = ajv.compile(signupSchema)
const moduleCode = standaloneCode(ajv, validate)
module.exports = moduleCode
提前谢谢。
这似乎是AJV文档中的一个错误(https://ajv.js.org/standalone.html)。捆绑的standalone
模块具有ESM样式的导出,因此在使用require
:时需要显式引用.default
const standaloneCode = require('ajv/dist/standalone').default