相信就能看见,有梦想就有蓝天 蓝星花的博客




文件预览项目接入和测试界面

如果你的项目需要接入文件预览项目,达到对docx、excel、ppt、jpg等文件的预览效果,那么通过在你的项目中加入下面的代码就可以 成功实现:
    $scope.openWin = function (fileUrl) {
        var url = configuration.previewUrl + encodeURIComponent(fileUrl);
        var winHeight = window.document.documentElement.clientHeight-10;
        $window.open(url, "_blank", "height=" + winHeight
            + ",top=80,left=80,toolbar=no, menubar=no, scrollbars=yes, resizable=yes");
    };
新增多图片同时预览功能,接口如下:
    var fileUrl =url1+"|"+"url2";//多文件使用“|”字符隔开
    var url = "http://localhost:8012/picturesPreview?urls" + encodeURIComponent(fileUrl);
    var winHeight = window.document.documentElement.clientHeight-10;
    $window.open(url, "_blank", "height=" + winHeight
            + ",top=80,left=80,toolbar=no, menubar=no, scrollbars=yes, resizable=yes");

因为是测试所以一种文件只允许上传一个