0
我有這樣的代碼來獲取XML數據,並將其轉換爲JSON最後JSON分配到$範圍對象由視圖處理
function employeesList($scope) {
$.get('http://www.benisuef.gov.eg/_vti_bin/owssvr.dll?Cmd=Display&List=%7B9E8B17D5-7AE8-4BC8-9068-105DA949734A%7D&XMLDATA=TRUE', function(xml) {
var json = $.xml2json(xml, true);
$scope.employeeList = json.data[0].row;
});
}
問題的角度控制器不等待完成它的工作 我該如何讓它等待呢?
** A ** JAX被稱爲是因爲它是** **同步您 – zerkms
使用souldn't jQuery Ajax但Angularjs $ http方法。 – L105