我正在尝试GET request
使用以下内容,angular httpClient
但到目前为止没有成功。任何人都可以帮忙。请求如下。
curl --location --request GET 'MY_URL_TO_SEND'
--header 'Content-Type: application/json'
--header 'Authorization: MY_TOKEN'
--data-raw '{
"_source": ["title"],
"query": {
"multi_match": {
"query": "covid",
"type": "best_fields",
"fields": ["title.e_ngrams^4", "description.e_ngrams", "keywords.e_ngrams^2"],
"fuzziness": 1
}
}
}'
当我将它粘贴到 a 中时,该命令有效terminal
,并将返回以下结果。
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 6,
"relation": "eq"
},
"max_score": 1.0,
"hits": [
{
"_index": "stats",
"_type": "_doc",
"_id": "daily-covid-19-deaths",
"_score": 1.0,
"_source": {
"title": "Daily Covid-19 Deaths"
}
}]
}
},
但是,当我通过 Angular 进行调用时,它不仅会返回,title
而是_source
会返回所有其他参数,这也表明调用无法正常工作。
这是我到目前为止所尝试的。
const httpParams: HttpParams = new HttpParams();
httpParams.set('_source', JSON.stringify(['title', 'slug']));
httpParams.set(
'query',
JSON.stringify({
multi_match: {
query: query,
type: 'best_fields',
fields: [
'title.e_ngrams^4',
'description.e_ngrams',
'keywords.e_ngrams^2',
],
fuzziness: 1,
},
})
);
this.http
.get(environment.ES.searchAPI, {
headers: this.httpHeaders,
params: httpParams,
})
.subscribe((data: any) => {
this.searchResults.next(this.parseResults(data));
});
}
这会返回结果,但传递的参数(例如_source
)不起作用。它只返回所有结果。
这是我的 Angular 应用程序httpClient
从上述代码返回的内容。