我正在尝试从 http getUrl 函数获取数据,但无法在请求中设置标头。
var response = http.getUrl(url,{format:'json'});
作为回应,我在 Content-Type text/html 中获取数据;字符集=utf-8
我需要设置标头内容类型:“应用程序/json”以获取正确的格式,但无法在 get 调用中设置标头。
请帮我解决这个小问题。
提前致谢。
我正在尝试从 http getUrl 函数获取数据,但无法在请求中设置标头。
var response = http.getUrl(url,{format:'json'});
作为回应,我在 Content-Type text/html 中获取数据;字符集=utf-8
我需要设置标头内容类型:“应用程序/json”以获取正确的格式,但无法在 get 调用中设置标头。
请帮我解决这个小问题。
提前致谢。
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);