gpt4 book ai didi

javascript - 类型 'Document' 缺少类型中的以下属性

转载 作者:行者123 更新时间:2023-12-03 23:20:53 26 4
gpt4 key购买 nike

所以我有一个 Node/w Typescript REST API,我有一个注册方法,它创建一个用户并使用创建的用户名、姓氏、电子邮件进行响应。

问题是我遇到了这个 typescript 错误,上面写着“类型'文档'缺少'SavedUser'类型的以下属性:名字,姓氏,电子邮件”。

我相信在我的 SavedUser 界面中添加 mongoose.Document 类型会有所帮助,我不确定,谢谢您的帮助!

错误截图:
enter image description here

示例代码:

    interface SavedUser {
firstName: string
lastName: string
email: string
}

...

public async signUp(req: Request, res: Response): Promise<void | Response> {
const salt: string = await bcrypt.genSalt(10)
const hashedPassword: string = await bcrypt.hash(req.body.password, salt)

const user = new User({
firstName: req.body.firstName,
lastName: req.body.lastName,
email: req.body.email,
password: hashedPassword
})

try {
const { firstName, lastName, email }: SavedUser = await user.save()

return res.status(200).send({
firstName,
lastName,
email
})
} catch (err) {
return res.status(400).send(err)
}
}

最佳答案

我不知道问题到底出在哪里,但这就是我使用 TypeScript 创建 Mongoose 模式的方式,它对我有用。

import * as mongoose from 'mongoose';

interface SavedUserDocument extends mongoose.Document {
firstName: string;
lastName: string;
email: string;
}

const SavedUserSchema = new mongoose.Schema({...});
export const SavedUser = mongoose.model<SavedUserDocument>('saveduser', SavedUserSchema);

希望它也适用于你。

关于javascript - 类型 'Document' 缺少类型中的以下属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59370026/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com