创建记录时 Prisma typescript 类型错误
Posted
技术标签:
【中文标题】创建记录时 Prisma typescript 类型错误【英文标题】:Prisma typescript type error when creating record 【发布时间】:2022-01-16 10:07:46 【问题描述】:我在 mysql 中使用 prisma。 当我尝试创建新记录(学校)时,我在控制台中收到类型错误。 我也在使用一个名为 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
Prisma 架构
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
);
【问题讨论】:
【参考方案1】:发现我在我的项目文件夹之外安装了 prisma。 我刚刚删除它并重新安装它。
【讨论】:
以上是关于创建记录时 Prisma typescript 类型错误的主要内容,如果未能解决你的问题,请参考以下文章