在 HTTP getUrl 中设置 header
Set header in HTTP getUrl
我正在尝试从 http getUrl 函数获取数据,但无法在请求中设置 header。
var response = http.getUrl(url,{format:'json'});
作为响应,我正在获取数据
Content-Type text/html;字符集=utf-8
我需要设置 header content-type:"application/json" 以获得正确的格式,但无法设置 header 接电话。
请帮我解决这个小问题。
提前致谢。
I resolved the issue, we can add headers in options object and pass as an argument
in getUrl function
var options = {
format: 'json',
query: {
term: type
},
headers:{'Accept':'application/json'}
};
var response = http.getUrl(config.get('remote.url') + '/search', options);
我正在尝试从 http getUrl 函数获取数据,但无法在请求中设置 header。
var response = http.getUrl(url,{format:'json'});
作为响应,我正在获取数据 Content-Type text/html;字符集=utf-8
我需要设置 header content-type:"application/json" 以获得正确的格式,但无法设置 header 接电话。
请帮我解决这个小问题。
提前致谢。
I resolved the issue, we can add headers in options object and pass as an argument
in getUrl function
var options = {
format: 'json',
query: {
term: type
},
headers:{'Accept':'application/json'}
};
var response = http.getUrl(config.get('remote.url') + '/search', options);