我需要从GET请求中将所有部分匹配返回给userName
字符串。
当前,仅在userName是直接匹配项时才返回用户。用户应该能够输入部分userName,而GET请求应将所有匹配项返回给输入的字符串。
服务:
path = this.basePath + '&UserId=' + data.userName;
let requestOptions = {
method: 'GET',
headers: new Headers(),
search: new URLSearchParams()
};
return this.httpClient.get(path, requestOptions)
.map((response: any) => {
return response.json();
}).catch(this.dataService.handleError);