0
我很擔心請求中的頭文件緩存。
我的資源是看起來像:
method: 'GET',
cache: false,
headers: {
session: auth.mySession()
}
提供商也配置。
config(['$httpProvider', function($httpProvider) {
if (!$httpProvider.defaults.headers.get) {
$httpProvider.defaults.headers.get = {};
}
$httpProvider.defaults.headers.get['Cache-Control'] = 'no-cache';
$httpProvider.defaults.headers.get['Pragma'] = 'no-cache';
}]).
在實踐中它不起作用。 請求在會話被移除的同時被髮送,而 在沒有會話的情況下被設置。 我不得不按下Ctrl + F5。