我的計劃是使用API(例如Google Charts API)創建QR碼,然後在我的網站上顯示生成的QR碼。我創建了一個由谷歌圖表API請求QR碼圖像的功能:請求QR碼並使用Angular JS顯示圖像
.controller('DealCtrl', function($scope, $http) {
$http.get("https://chart.googleapis.com/chart?cht=qr&chs=300x300&chl=160%20FSU728F29G&coe=UTF-8")
.success(function(data, status, headers, config) {
$scope.qrcode = data;
}).error(function(data, status, headers, config) {
$scope.qrcode = status;
});
})
當我嘗試的響應爲HTML綁定,我得到這個:
<div ng-bind-html="qrcode"></div>
響應似乎是一個圖像(PNG)。我如何在我的網站上顯示此內容?
我覺得還有更多這個,我不知道你爲什麼張貼來獲取圖表。 – xkcd149
不確定你對此評論的意思。 – doonot
你爲什麼張貼獲得二維碼? – xkcd149