mongoose Unexpected identifier
不明白为什么加了await userInfo.save();就报Unexpected identifier错误,实在找不出问题点,求大神相助,谢谢!
const config = require('../config')
const axios = require('axios')
const mongoose = require('mongoose')
const User = mongoose.model('User')
// console.log('User');
// console.log(User);
module.exports = async function (code) {
var url = [
config.wechat,
'?appid=',
config.appId,
'&secret=',
config.appSecret,
'&js_code=',
code,
'&grant_type=authorization_code'
].join('')
axios.get(url)
.then(function(response){
const userInfo = new User({
sessionKey:response.data.session_key,
openid:response.data.openid
})
console.log('userInfo');
console.log(userInfo);
await userInfo.save();
})
.catch(function(error){
console.log(error);
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
非常感谢,是我async没理解透彻
楼主,你好!你写的确实有点问题。
改成如下代码,试试看~
如有帮助,麻烦点击下采纳,谢谢~