我有打印數據在HTML中的問題。我必須從服務器打印數據。AngularJsonp數據打印
這個例子環節
http://mario.com/jsapp/getdata-new.php?jsonp=2017
它的外觀:
processData([{"name":"A","open":"0"},{"name":"b","open":"1"}]);
我CTRL
myApp.controller('liveCurrencyCtrl', function ($scope, $http) {
$http.get("http://mario.com/jsapp/getdata-new.php?jsonp=2017")
.then(function (response) {
$scope.names = response.data;
console.log(response.data);
});}
這是我的HTML
<div class="liveCurrencyTable" ng-controller="liveCurrencyCtrl">
<tr ng-repeat="x in names">
{{name}}
</tr>
</div>
你知道我必須做什麼嗎?當我在HTML中打印所有JSON時,我使用JSON格式,但我必須按元素打印元素。 TNX求助
http.jsonp( 「http://mario.com/jsapp/getdata-new.php?jsonp=2017」) ,我有錯誤:Uncaught ReferenceError:processData沒有定義 – mrkibzk
'console.log(response.data);'log?是什麼,把它放在qstn中。 – anoop
這是resposne json在鏈接上的相同形式,我想按元素打印元素: – mrkibzk