Angular Rest 호출에서 쿼리 매개변수를 설정하는 방법
4081 단어 codevertypescriptsnippetsangular
다음 스니펫에서 http 쿼리 매개변수를 나머지 API 호출로 설정하는 핫을 볼 수 있습니다.
HttpParams
요청 옵션과 함께 params
클래스를 사용하여 HttpRequest에 URL 쿼리 문자열을 추가합니다. getFilteredPersonalBookmarks(searchText: string, limit: number, page: number, userId: string, include: string): Observable<Bookmark[]> {
const params = new HttpParams()
.set('q', searchText)
.set('page', page.toString())
.set('limit', limit.toString())
.set('include', include);
return this.httpClient.get<Bookmark[]>(`${this.personalBookmarksApiBaseUrl}/${userId}/bookmarks`,
{params: params})
.pipe(shareReplay(1));
}
Shared with ❤️ from Codever. 👉 use the copy to mine functionality to add it to your personal snippets collection.
Reference
이 문제에 관하여(Angular Rest 호출에서 쿼리 매개변수를 설정하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codever/how-to-set-query-parameters-in-angular-rest-call-4hl6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)