當使用axios取得資料時,如何在filteredProducts中顯示道具。我已經通過瞭如下圖的道具。
export default { data() { return { filteredProducts: [], }; }, mounted() { axios .get('/src/stores/sneakers.json') .then(response => { const products = response.data this.filteredProducts = products.filter(product => product.name.includes('Nike')) }) }, computed: { resultCount () { return Object.keys(this.filteredProducts).length }, }, props: { brand: { type: Object, }, },
我想用正在傳遞的品牌名稱來取代「Nike」。非常感謝
選擇名為「Nike」的產品並將其傳遞到
filteredProducts
中。之後,您可以使用計算屬性來變更名稱並在範本中使用它。