作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经将 angular 4 代码迁移到 angular 6,我想知道如何在 angular 6 或 7 中导入以下代码?
import { RequestOptions, ResponseContentType } from '@angular/common/http';
最佳答案
通过这种方式......
import { HttpClient, HttpHeaders } from '@angular/common/http';
let headers = new HttpHeaders({
'Content-Type': 'application/json'
});
let options = {
headers: headers
}
this.http.post(URL, param, options)
.subscribe(data => {
console.log(data);
});
// For pass blob in API
return this.http.get(url, { headers: new HttpHeaders({
'Authorization': '{data}',
'Content-Type': 'application/json',
}), responseType: 'blob'}).pipe (
tap (
// Log the result or error
data => console.log('You received data'),
error => console.log(error)
)
);
关于 Angular 6 或 7 : How to import RequestOptions and ResponseContentType in '@angular/common/http' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53118316/
我是一名优秀的程序员,十分优秀!