我正在尝试以RTF格式处理ANGULAR2中来自API服务的JSON数据。
我不知道该写些什么。 这是一个示例代码
return this.http.get(url,{responseType: ResponseContentType.Blob }).map(
(res) => {
return new Blob([res.blob()], { type: 'application/vnd.ms-excel' })
})
此代码适用于Excel格式。 我想要RTF格式。 申请类型是什么?
答案 0 :(得分:0)
您应将Content-Type设置为
DoubleValueConverter