想问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
正在啃, 但项目来的急啊, 先求方法解决一下
怪我咯2017-04-17 14:59:17
エラー メッセージはクロスドメイン リクエストのようで、応答ヘッダーに必要なフィールドがありません。
this.set({
'アクセス制御-許可-オリジン': '*'
});
フェッチを使用しているようです。フェッチ モードを cors
に設定することを忘れないでください。
巴扎黑2017-04-17 14:59:17
サーバーはクロスドメイン リソース共有を有効にしていません
npm install kcors --save
次に、ルートの前に次の文を記述します
app.use(require('kcors')())
=============
Koa はサーバー側でヘッダーを返す方法を設定します ctx.set('header mame', 'header content')