作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的 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>
[...]
import { newSession } from '../../packages/backend/mongo/connection';
const apiNewSession = async (roomName, teamName) => {
await newSession(teamName, roomName);
};
export default apiNewSession();
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();
};
最佳答案
像往常一样,一旦你下定决心,答案就很容易了。
我从 NextJS API 文件中错误地导出了函数。
正确方法:export default apiNewSession;
不知道为什么当我默认导出函数时它仍然发生。
关于javascript - 类型错误 : resolver is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60242181/
我是一名优秀的程序员,十分优秀!