如何在Angular2中将JSON数据作为RTF格式获取

时间:2018-01-24 14:00:50

标签: angularjs angular angular2-services angular2-directives

我正在尝试以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格式。 申请类型是什么?

1 个答案:

答案 0 :(得分:0)

您应将Content-Type设置为

DoubleValueConverter