gpt4 book ai didi

vuejs2 - BootstrapVue 表不显示数据

转载 作者:行者123 更新时间:2023-12-02 20:13:33 25 4
gpt4 key购买 nike

我正在尝试使用找到的 bootstrapVue 表 here

如果我完全使用他们的示例,那么该表效果很好。

  <b-table striped hover :items="items"></b-table>

但是一旦我使用

<b-table striped hover :fundingInstructions="fundingInstructions"></b-table>

我的表不显示,当我查看开发工具时,我看到我的表对于从 api 返回的每个对象都有 [object,Object]。 奥 git _a 如果我通过控制台记录数据,我会看到一个包含多个对象的数组 []。如何让表格显示我的数据?

 const items = [
{ isActive: true, date:'10/20/2018', amount:'$4568.00', city:'FL Palm Beach' },
{ isActive: false, date:'10/21/2018', amount:'$789.23', city:'FL Daytona Beach' },
{ isActive: false, date:'10/21/2018', amount:'$999.99', city:'FL Key West' },
{ isActive: true, date:'10/22/2018', amount:'$589.00', city:'FL Deltona' }
]

export default {
data() {
return {
fundingInstructions : [],
fields: [ 'subMerchantName', 'fundsTransferId', 'amount' ,'accType', 'submitDate' ],
items: items
}
},
methods:{
async GetFundingInstructionInfo(){
this.fundingInstructions = await api.getAllFundingInstructions()
}

最佳答案

好的,所以我弄清楚了问题是什么,从而找到了解决方案。在表 html 中,它应该如下所示

  <b-table striped hover :items="fundingInstructions"></b-table>

似乎 items 是一个关键术语,并且您的收藏包含在报价中。就是这样!

关于vuejs2 - BootstrapVue 表不显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52937874/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com