gpt4 book ai didi

javascript - Angularjs $http GET 方法更改为 OPTION,同时添加自定义 header

转载 作者:行者123 更新时间:2023-11-30 05:31:26 25 4
gpt4 key购买 nike

var users= $resource('http://myapp.herokuapp.com/users', {});
users.get();

添加header方法后,http GET方法变为OPTION

var users= $resource('http://myapp.herokuapp.com/users', {}, {
get:{
method:"GET",
headers:{'x-access-token':'token'}
}
});

users.get();

请指导我为什么 GET 方法更改为 OPTION 方法。

最佳答案

按照 REST 约定,在 GET 调用之前进行 OPTION 调用。

引用规范:

This method allows the client to determine the options and/or requirements associated with a resource, or the capabilities of a server, without implying a resource action or initiating a resource retrieval.

关于javascript - Angularjs $http GET 方法更改为 OPTION,同时添加自定义 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26722808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com