各リクエストにデフォルトの HTTP ヘッダーを追加するシェルフ パイプラインにミドルウェアを追加するにはどうすればよいですか?
質問する
1485 次
1 に答える
8
アップデート
CORS ヘッダーの追加を簡素化する pub パッケージが追加されました。https:
//pub.dartlang.org/packages/shelf_cors
を参照してください。
オリジナル
https://groups.google.com/a/dartlang.org/forum/#!topic/cloud/2Vn_IqzGtTcも参照してください。
final Map<String, String> _headers = {'Access-Control-Allow-Origin': '*',
'Content-Type': 'text/html'};
// for OPTIONS (preflight) requests just add headers and an empty response
shelf.Response _options(shelf.Request request) => (request.method == 'OPTIONS') ?
new shelf.Response.ok(null, headers: _headers) : null;
shelf.Response _cors(shelf.Response response) => response.change(headers: _headers);
shelf.Middleware _fixCORS = shelf.createMiddleware(
requestHandler: _options, responseHandler: _cors);
final shelf.Handler handler = const shelf.Pipeline()
.addMiddleware(_fixCORS)
.addMiddleware(shelf.logRequests())
.addMiddleware(exceptionResponse())
.addHandler(routes.handler);
http://thomaslockerambling.blogspot.co.at/2014/10/shelf-middleware-adding-cors-headers.htmlも参照してください。
于 2014-10-08T09:24:11.180 に答える