第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

vue 組件不渲染從后端獲取的數(shù)據(jù)

vue 組件不渲染從后端獲取的數(shù)據(jù)

千萬(wàn)里不及你 2023-07-20 15:00:16
我有一個(gè)非?;镜?HTML 頁(yè)面,其中有一個(gè)簡(jiǎn)單的 Vue 組件。在網(wǎng)絡(luò)選項(xiàng)卡中,我可以看到它正確獲取了數(shù)據(jù),應(yīng)該出現(xiàn)的列表已呈現(xiàn),但數(shù)據(jù)根本不存在。    <div id="app">      <h2>Total inventory: {{ totalProducts }}</h2>      <ul>        <li>beginning of the list</li>        <li v-for="product in products">          {{ product.name }} {{ product.price }}        </li>        <li>End of the list</li>      </ul>    </div>    <script src="https://unpkg.com/vue"></script>    <script>      const app = new Vue({        el: '#app',        data: {          products: []        },        created () {          fetch('http://localhost:3000/api/teddies')            .then(response => response.json())            .then(json => {              this.products = json.products            })        },        computed () {          return this.products.reduce((sum, product) => {            return sum + product.quantity          }, 0)        }      })    </script>我嘗試將腳本的代碼包含到一個(gè)單獨(dú)的文件中,使用 axios 進(jìn)行請(qǐng)求(我知道它不會(huì)改變?nèi)魏问虑?,因?yàn)檎?qǐng)求實(shí)際上已經(jīng)有效),將 ID 直接歸因于列表并在腳本中使用它...沒(méi)有出現(xiàn)任何內(nèi)容來(lái)代替 {{ Product.name }} 和 {{ Product.price }} 。同樣適用于totalProducts變量和{{totalProducts}}
查看完整描述

2 回答

?
RISEBY

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超5個(gè)贊

json直接分配給this.productslike :


 fetch('https://fakestoreapi.com/products')

            .then(response => response.json())

            .then(json => {

              this.products = json           

            })

因?yàn)閖son代表products列表,所以json.products會(huì)返回undefined


計(jì)算屬性應(yīng)定義如下:


computed:{

  comp1(){...},

 comp2(){...}

}

<div id="app">

  <h2>Total inventory: {{ totalProducts }}</h2>

  <ul>

    <li>beginning of the list</li>

    <li v-for="product in products">

      {{ product.title }} {{ product.price }}

    </li>

    <li>End of the list</li>

  </ul>

</div>

<script src="https://unpkg.com/vue"></script>

<script>

  const app = new Vue({

    el: '#app',

    data: {


      products: []


    },

    created() {

      fetch('https://fakestoreapi.com/products')

        .then(response => response.json())

        .then(prod => {


          this.products = prod

         

        })

    },

    computed: {

      totalProducts() {

        return this.products.reduce((sum, product) => {

          return sum + product.price

        }, 0)

      }

    }


  })

</script>


查看完整回答
反對(duì) 回復(fù) 2023-07-20
?
慕姐4208626

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超7個(gè)贊

您的數(shù)據(jù)應(yīng)該返回一個(gè)返回新對(duì)象的函數(shù):


短途


data: () => ({

   products: []

})

很長(zhǎng)的路要走


data() {

  return {

    products: []

  }

}


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 2 回答
  • 0 關(guān)注
  • 180 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)