我想在导航器中使用带有 cookie 设置的资源。
使用 $http 真的很简单,因为我只需要将 withCredential 设置为 true:
$http({
method: 'POST',
url: url,
data: user,
withCredentials: true
});
但是对于 $resource,我没有找到解决方案来解决这个问题……我在 github 上看到了关于该问题的讨论,但我认为所有请求的 withCredential 设置为 true 是不行的。你知道怎么做吗?