0

我在 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
    }
});
4

1 回答 1

0

发现我已经在我的项目文件夹之外安装了 prisma。我刚刚删除它并重新安装它。

于 2021-12-13T19:39:20.093 回答