gpt4 book ai didi

javascript - 类型错误 : resolver is not a function

转载 作者:行者123 更新时间:2023-12-03 13:47:38 26 4
gpt4 key购买 nike

我正在尝试在我的 NextJS 应用程序中单击到 MongoDB 数据库中创建一个基本帖子。我遇到的问题是 TypeError: resolver is not a function .我知道这可能是一个同步问题,但对于我的生活,我无法弄清楚在哪里。

使用的堆栈:NextJS、Axios、Mongoose。

调用 axios 的组件代码片段:

我知道状态正在更新,所以我只放处理请求的片段

  handleSubmit = async (e: any) => {
e.preventDefault();

await axios
.post('/api/roomSession', {
roomName: this.state.roomName,
teamName: this.state.teamName
})
.then((response: any) => console.log('axios call reached', response))
.catch((error: any) => console.log('---- error! ----', error));
};

[...]
<button onClick={this.handleSubmit}>Create</button>
[...]

NextJS API 文件:
import { newSession } from '../../packages/backend/mongo/connection';

const apiNewSession = async (roomName, teamName) => {
await newSession(teamName, roomName);
};

export default apiNewSession();

Mongoose 文件:
const mongoose = require('mongoose');

mongoose
.connect(
'mongodbconnection',
{ useNewUrlParser: true, useUnifiedTopology: true }
)
.then(() => {
console.log('connected to mongoDB');
})
.catch(err => console.error('Connection failed: ', err));

const sessionSchema = new mongoose.Schema({
teamName: String,
roomName: String
});

const Session = mongoose.model.tests || mongoose.model('tests', sessionSchema);

export const newSession = async (teamName, roomName) => {
const session = new Session({
teamName,
roomName
});
const result = await session.save();
mongoose.connection.close();
};

关于奇怪行为的一些额外信息:第一次调用时,代码会抛出上述错误,但设法到达 mongoDB 连接并在集合内创建一个 EMPTY 条目(仅 _id 和 _v)。
在第二次尝试时,只抛出错误。

最佳答案

像往常一样,一旦你下定决心,答案就很容易了。
我从 NextJS API 文件中错误地导出了函数。
正确方法:export default apiNewSession;不知道为什么当我默认导出函数时它仍然发生。

关于javascript - 类型错误 : resolver is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60242181/

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