我想從使用vue.js的其他api獲取數據。但它不起作用。它既不顯示響應數據也不顯示錯誤狀態。無法弄清楚出了什麼問題。vue.js從REST API獲取數據的麻煩
這裏是我的index.html
<html>
<body>
<script src="https://unpkg.com/vue"></script>
<div id="app">
{{ message }}
</div>
<script>
var url = "http://clients.itsd.com.bd/table-cartel/wp-json/wp/v2/categories";
var app = new Vue({
el: "#app",
data: {
message: "Hello!"
},
methods: {
work: function(){
alert(url);
this.$http.get(url).then(function(response){
alert(response.data);
this.message = response.data;
}, function(error){
alert(error.statusText);
});
}
},
mounted: function(){
this.work();
}
});
</script>
</body>
</html>
它顯示url
,但沒有表現出response.data
或error.statusText
。
我遵循here描述的過程。
你應該使用一個HTTP客戶端軟件包,例如[愛可信] (https://github.com/mzabriskie/axios)或[vue-resource](https://github.com/pagekit/vue-resource)。 Vue默認不包含一個。 – ironcladgeek
https://stackoverflow.com/documentation/vue.js/9350/using-this-in-vue#t=201708031319535958854 – PatrickSteele