koa ajax 返回数据

发布于 2022-09-03 23:28:23 字数 639 浏览 9 评论 0

想问koa ajax是怎么返回数据的?
之前是使用express可以用res.writeHead设置头, res.write设置返回内容, 但是koa没有了这些方法, 要怎么返回呢?

我直接this.body =并没有效果

Fetch API cannot load http://192.168.33.1:8888/indie/song/1. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8888' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

初学koa不是很懂, es6正在啃, 但项目来的急啊, 先求方法解决一下

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

﹏雨一样淡蓝的深情 2022-09-10 23:28:25

看报错好像是跨域请求,响应头里面缺少必要字段,设置如下头

this.set({
  'Access-Control-Allow-Origin': '*'
});

看着你好像用时fetch,记得别忘记设置fetch的mode成cors

墟烟 2022-09-10 23:28:25

服务端没有开跨域资源共享吧
npm install kcors --save
然后把这句写在路由前面
app.use(require('kcors')())

=============
Koa在服务端设置返回头的方式 ctx.set('header mame', 'header content')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文