この問題は私の問題です。 http://dev-rexolution.pantheonsite.io/api/noticiasVue.js jsonを消費する
は私だけで、配列の最初の要素は、私が働いていたコンソールではなく無vuejsと協力して、それを表示することができるようにvuejs 2を消費する必要があります。
このコンソールログの作業:console.log(response.data [0] .title [0] .value);
<template>
<div class="Box Box--destacado1">
<div class="Media Media--rev">
<div class="Media-image">
</div>
<div class="Media-body">
<span class="Box-info">{{ noticias[0].field_fecha[0].value}}</span>
<h3 class="Box-title">
<a href="">{{ /*noticias[0].title[0].value */}}</a>
</h3>
<p class="Box-text">{{/*noticias[0].field_resumen[0].value*/}}</p>
</div>
</div>
</template>
<script>
import axios from 'axios';
export default {
data:() => ({
noticias: [],
errors: []
}),
// Fetches posts when the component is created.
created() {
axios.get(`http://dev-rexolution.pantheonsite.io/api/noticias`)
.then(response => {
// JSON responses are automatically parsed.
this.noticias = response.data
})
.catch(e => {
this.errors.push(e)
})
}
}
</script>
*「機能していない」*と正確にはどういう意味ですか?また、あなたのURLに文字列テンプレートリテラルを使用する理由は? – Phil
ブラウザの* Console *と* Network * devツールのクイックルックで、実行中の問題が表示されるはずです – Phil
このテンプレートはDrupal 8モジュールのRestで生成されます。定義されていないオブジェクトを返すので、動作しません –