私はJavaScriptとVue.jsが初めてで、Vue.jsを使用してapiにアクセスするのに問題があります。アクセスしようとしているAPIには、次のようなJSONがあります。
{
"coord": {
"lon": -88.99,
"lat": 40.51
},
"weather": [
{
"id": 800,
"main": "Clear",
"description": "clear sky",
"icon": "01n"
}
],
"base": "stations",
"main": {
"temp": 2.09,
"pressure": 1022.3,
"humidity": 69,
"temp_min": 2.09,
"temp_max": 2.09,
"sea_level": 1052.03,
"grnd_level": 1022.3
},
"wind": {
"speed": 12.66,
"deg": 205.502
},
"clouds": {
"all": 0
},
"dt": 1482203059,
"sys": {
"message": 0.186,
"country": "US",
"sunrise": 1482239741,
"sunset": 1482273134
},
"id": 4903780,
"name": "Normal",
"cod": 200
}
APIリンクは独自に機能しますが、プログラムを実行するときにアクセスしているとは思いません。 JSONを解析して解析せず、APIから収集したすべてのデータを表示するだけでも、変数は空のままです。だから、私はAPIにアクセスするために何か間違っている必要があります。また、apiにアクセスした後、次のように解析します。たとえば、タグ "temp" => "data.main.temp"にアクセスするには
var weather = new Vue({
el: '#weather',
data: {
getTemp: ''
},
created: function () {
this.fetchData();
},
methods: {
fetchData: function () {
this.$http.get('api.openweathermap.org/data/2.5/weather?q=Normal&units=imperial&APPID=MYAPPID'),
function (data) {
this.getTemp = data.main.temp;
}
}
}
})
;
HTMLコード:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/vue.resource/1.0.3/vue-resource.min.js"></script>
</head>
<body>
<div id="weather">
{{getTemp}}
</div> <!--end of weather-->
</body>
<script src="app.js"></script>
</html>
this
の範囲、this
の範囲が$http.get
黒、次の変更を行う必要があります。
methods: {
fetchData: function () {
var vm = this
this.$http.get('api.openweathermap.org/data/2.5/weather?q=Normal&units=imperial&APPID=MYAPPID'),
function (data) {
vm.getTemp = data.main.temp;
}
}
}
同様の答え here も確認できます。
私はあなたのコードで約束と、ここで他のいくつかの調整をしたいと思います
var weather = new Vue({
el: '#weather',
data: {
getTemp: []
},
created: function () {
this.fetchData();
},
methods: {
fetchData: function () {
this.$http.get('api.openweathermap.org/data/2.5/weather?q=Normal&units=imperial&APPID=MYAPPID')
.then(response => {
this.getTemp = response.data
// or like this this.getTemp = response.json()
})
}
}
})
;