为了账号安全,请及时绑定邮箱和手机立即绑定

angular js怎么能在界面上显示pdf?

angular js怎么能在界面上显示pdf?

扬帆大鱼 2018-12-11 21:18:38
如题,请大神赐教
查看完整描述

1 回答

?
郎朗坤

TA贡献1921条经验 获得超9个赞

我找到解决方法了,分享一下
controller层
$http.get(url,{responseType: 'arraybuffer'})
                        .then(function (msg) {                            var file = new Blob([msg.data], {type: 'application/pdf'});                            var fileURL = URL.createObjectURL(file);
                            $scope.content=$sce.trustAsResourceUrl(fileURL);
                        });
 html层
 <div class="modal-content" onloadstart="">
        <object ng-show="content" data="{{content}}" type="application/pdf" style="width: 100%;         height: 1000px;"></object>
    </div>


查看完整回答
反对 回复 2018-12-11
  • 1 回答
  • 0 关注
  • 529 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信