0

我是 vuetify 的新手,我被困在如何正确使用 v-select 上。我将选择值从 API 拉到名为 FormatTypes 的存储中,如下所示:

[{"id":5,"formatlabel":"RDBMS Table or View"}
,{"id":6,"formatlabel":"Microsoft Access"}
....
,{"id":23,"formatlabel":"ArcGIS for Server image services"}]

我的 v 选择:

<v-select font-weight-regular subtitle-1
          v-model=dataset.formattypeid
          :name="FormatTypes"
          :items="FormatTypes"
          :item-value="FormatTypes.id"
          :item-text="FormatTypes.formatlabel"
          :label="FormatTypeLbl"
          :outlined=true
           >

我已经使用了 item-text/item-value 道具,但我仍然在显示中获得“object Object”。

4

1 回答 1

0

您不必使用绑定,也无需将其与和中的项目链接item-valueitem-text

<v-select font-weight-regular subtitle-1
   v-model=dataset.formattypeid
   :name="FormatTypes"
   :items="FormatTypes"
   item-value="id" // No need of binding and no need of FormatTypes linking
   item-text="formatlabel" // No need of binding and no need of FormatTypes linking
   :label="FormatTypeLbl"
   :outlined=true
   >
于 2020-05-13T15:33:24.467 回答