在 Angular 14 中,创建代理需要在构造函数中使用 HttpClient 创建。以下是一个示例:
import { HttpClient } from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class MyService {
constructor(private http: HttpClient) {
// Use http client here to create proxy
}
}