angularjs全局配置自定義請求頭

angularjs全局配置自定義請求頭

var app = angular.module('app', [
  // '$httpProvider',
]);

app.config(function(
  $httpProvider
) {
  'use strict';
  const iosVersion = window.postNativeMessage('getAppVersion') || '1.1.0';
  console.log(iosVersion);
  $httpProvider.defaults.headers.common['ios_version'] = iosVersion;

})

如果出現跨域問題
可在http repponse header中設置access-control-allow-headers: accept, accept-encoding, authorization, content-type, dnt, origin, user-agent, x-csrftoken, x-requested-with, ios_version

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章