私はAPIを使って提供するデータに基づいてリストをレンダリングしたい。私は現在の出力のスクリーンショットを作りました。問題は、オブジェクトのプロパティにアクセスできないことです。ページを読み込む際にエラーが発生します。プロパティに正しくアクセスするにはどうしたらいいですか? @{{incident.incidentReference}}
は機能しませんでした。オブジェクトのプロパティにアクセスするVueJS
BASE.JS
// IMPORT ADDONS
import VueEvents from 'vue-events';
import dashboard from './dashboard';
import gis from './gis';
import MFSApi from './mixins/MFSApi';
window.Vue = Vue;
Vue.use(VueEvents);
// Will be called if there is no initMap function in component
window.initMap =() => {
true
}
var Base = window.App = new Vue({
el: '#wrapper',
mixins: [MFSApi],
components: {
dashboard,
gis
}
});
COMPONENTダッシュボード
export default {
name: 'dashboard',
mixins: [MFSApi],
template: "#dashboard",
components: {
ibox
},
data() {
return {
searchAddress: '',
incidents: []
}
},
mounted: function() {
this.getAllIncidents(function(response) {
this.incidents = response.data["data"];
}.bind(this))
},
methods: {
},
created() {
console.info('Dashboard component triggered');
}
}
私はVueの共同でincidents
を定義していますあなたが上に見ることができるものに沿ってそこにいるように見えるオブジェクトをデループします。しかし、私はオブジェクトの内容にアクセスすることはできません。
私は、サーバーから取得したデータ、部品
APIを介してサーバからデータを取得するためのコード:
export default {
methods: {
// Incidents
getAllIncidents: function(callback) {
axios.get('api/v1/incidents').then(response => callback(response));
},
createIncidentTicket: function(incidentData, callback) {
axios.post('api/v1/incidents', incidentData).then(response => callback(response));
}
}
}
すべてのラッパーのコード
<!-- Wrapper-->
<div id="wrapper">
<!-- Navigation -->
@include('layouts.navigation')
<!-- Page wraper -->
<div id="page-wrapper" class="gray-bg">
<!-- Page wrapper -->
@include('layouts.topnavbar')
<!-- Main view -->
@yield('content')
<!-- Footer -->
@include('layouts.footer')
</div>
<!-- End page wrapper-->
</div>
<!-- End wrapper-->
エラーは何ですか? – thanksd
あなたはすでにそれらのオブジェクトを取得していますか?あなたのHTMLを構造化してください。 '@ {{incident.incidentReference}}@ {{incident.streetname}} – Chay22
ああ、申し訳ありませんが、エラーを言いました。うん、私はそれが私が働くべきだと思ったことに同意するだろう。上記のエラーは、先に – sesc360