?
public addTemplate(template: Template) {
const params = new HttpParams()
.set('name', template.name)
.set('path', template.path);
return this.http.post(this.addTemplateUrl, { params: params }).
subscribe(response => console.log(response));
}
У меня ругается в set() на
TS2345: Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | boolean'. Type 'undefined' is not assignable to type 'string | number | boolean'
template у меня да - string: undefined. И что делать?
if (template.name) params.set('name', template.name)
Обсуждают сегодня