$scope.re = $resource('/', {
callback: 'JSON_CALLBACK'
}, {
'updateCart': {
method: 'POST',
headers: {
'module': 'Shop',
'mod_id': '1',
'event': 'updateCart'
}
}
});
此处JSFIDDLE
此Issue仍然有效吗? 还有另一种设置自定义标头的方法吗? 谢谢你的帮助! :)
答案 0 :(得分:3)
我相信您必须回退到自定义标头的$ http。我也希望完成类似的任务,但没有办法使用$ resource。