P粉8795174032023-09-02 11:46:50
v-for
用於循環遍歷一組數據,這不是你想要的。假設id
是你的json
中的標識符,試著這樣做:
b-modal(hide-footer="", :id="id") template(#modal-title="") | 信息 .d-block.text-center p() {{ offers[id].jobDescription }} b-button(variant="primary") 申请
如果你將選定的id
儲存為資料變量,你可以將其放在計算屬性中:
computed: { selected() { return this.offers[this.id].jobDescription; } }
(編輯:我沒有意識到你發布了你的json,我之前的回答是針對數組的)