1

我正在尝试从 http getUrl 函数获取数据,但无法在请求中设置标头。

var response = http.getUrl(url,{format:'json'});

作为回应,我在 Content-Type text/html 中获取数据;字符集=utf-8

我需要设置标头内容类型:“应用程序/json”以获取正确的格式,但无法在 get 调用中设置标头。

请帮我解决这个小问题。

提前致谢。

4

1 回答 1

4
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);
于 2019-04-02T11:55:45.390 回答