如果出现Angular 12的http请求中URL无效的问题,可能是由于URL中包含了特殊字符或格式不正确的原因。解决此问题的方法是使用encodeURIComponent()函数处理URL中的特殊字符,并确保URL格式正确无误。
示例代码:
import { HttpClient } from '@angular/common/http';
const url = 'https://example.com/api/?name=john doe';
const encodedUrl = encodeURIComponent(url);
this.http.get(encodedUrl).subscribe((data) => { console.log(data); });