0
我想在AngularJS中顯示存儲在SQL Server中的Word文檔作爲base64編碼的字符串,而我不是相當肯定如何去做。這是我到目前爲止有:如何在存儲在SQL Server中的AngularJS中顯示Word文檔作爲基礎64編碼的字符串
我使用的是定義爲這樣一個$資源行動:
getFile: { url: svcFileURL + "(:FileId)?OversightId=:Id", method: "GET",
withCredentials: true, responseType: "arraybuffer", headers: { 'Content-
Type': 'application/json' } },
,在我的角度控制器我設置了幾個屬性:
$scope.img_url = "data:application/vndopenxmlformats-officedocumentwordprocessingmldocument;base64";
$scope.imageData = $scope.items.value[0].Files[0].FileData;
然後在我看來我只是這樣做:
<img ng-src="{{img_url}},{{imageData}}">
沒有運氣。我想知道我是否正在以這種正確的方式進行。任何幫助深表感謝。
非常感謝,
皮特