摘要:
app.post("/login",function(req,res){ // 登陆功能,校验usersid,成功则告知成功,失败则告知失败 const userId = req.session.userId; if(usermap.get(userId)){ res.status(200).sen 阅读全文
摘要:
注册 如果在Vue中使用,npm安装后,通过 import Vue from 'vue' import axios from 'axios' Vue.prototype.axios = axios 挂载到Vue实例上 使用(两种方法): this.axios.get(url).then(respon 阅读全文
摘要:
这个问题可以在后端解决: const app = express(); // 配置跨域请求 app.all("*", function (req, res, next) { if (!req.get("Origin")) { return next(); } // use "*" here to a 阅读全文
摘要:
1. Promise.resolve()立即将Promise视为成功,立即调用then中的语句。 2. Promise.then()语句中也可以包含一个新的Promise对象。 3. Promise.catch(console.error)即可将错误抛出。 4. 除了上面一种方法外,还可以用then 阅读全文