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,我之前的回答是针对数组的)