2017-03-31 51 views

回答

1

此圖中的錯誤發生是因爲success自角度版本1.4開始已被棄用。而不是成功使用then來捕捉響應

$http.get('url') 
.then(function(response){ 
    console.log(response.data) // result 
}) 
相關問題