我在 MySql 中使用棱镜。当我尝试创建新记录(学校)时,控制台中出现类型错误。我也在使用一个名为 Remix.run 的框架,但这应该不是问题。
我也尝试过使用 mongoDB,但我得到了相同的类型错误。
错误
251 console.log(info);
252 });
253 let data = {school_code: key, otp: code};
→ 254 await db.schools.create({
data: {
school_code: 'ISP0TMORECNJS9TB',
~~~~~~~~~~~
otp: 'EMI5DU'
}
})
Unknown arg `school_code` in data.school_code
for type schoolsCreateInput.Available args:
type schoolsCreateInput {
id ? : String
v ? : Int | Null
otp: String
}
棱镜模式
datasource db {
provider = "mysql"
url = "mysql://root@localhost:3306/myeducatio"
}
model schools {
otp String @db.Text
school_code String @id
}
代码
方法一
let data: any = {
school_code: key,
otp: code
};
await db.schools.create({
data,
});
方法二
await db.schools.create({
data: {
school_code: key,
otp: code
}
});