We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin currently only supports requests that are for jsonapi,
updateTrainer(trainer: string): Observable<Response> { return this.httpClient.post('trainer', trainer); }
Need support for non-string body based requests
updateTrainer(trainer: Trainer): Observable<Response> { return this.httpClient.post('trainer', trainer); }
The text was updated successfully, but these errors were encountered:
Can you explain the use case ?
Sorry, something went wrong.
post(url: string, body: string, options?: RequestOptionsArgs): Observable<Response> { let opts: RequestOptionsArgs = this.build(RequestMethod.Post, url, options, body); return this.request(url, opts); }
What if my body is not a string? This enforces me to transform my request object to string.
No branches or pull requests
Plugin currently only supports requests that are for jsonapi,
Need support for non-string body based requests
The text was updated successfully, but these errors were encountered: