我有一个使用ASP.NET MVC和angular 7构建的网站,我想重定向到另一个使用WebForms构建的网站。
但是我不想在URL中传递参数,而是在标题中传递参数。
谢谢!
我尝试了HttpClient,但我认为它不适合此任务。
let headers = new HttpHeaders()
headers = headers.set('Authorization', 'Basic blah');
headers = headers.set('anotherHeader', 'More blah');
this.http.request('GET', 'test.com', { headers })
.subscribe(
res => {
this.res = res;
console.log('Result:', res)
},
err => {
console.log('Error', err);
this.err = err;
},
);