var cors = require(‘koa2-cors’);// 跨域const allowOrigins = [“http://localhost:8080” // 需要跨域的端口,与本服务器端口不一样,请注意。];app.use(cors({origin: function(ctx) {if (a......