vue2-datatable-component ajax operations




我对 Vue JS 相当陌生,但已经使用 JavaScript 有一段时间了。我安装了 onewaytech 的 vue2-datatable-组件,并且一直在使用他们发布的高级示例。表工作正常,但我尝试让操作列中的按钮执行 ajax 调用以删除该行中显示的对象。我在文档中没有看到任何关于将唯一 ID 传递给 td-Opt 的内容,所以我被卡住了。

您必须使用动态组件来制作它。 例如:

data () {
  return {
    props: ['row'],
    supportBackup: true,
    supportNested: true,
    tblClass: 'table-bordered',
    tblStyle: 'color: #666',
    pageSizeOptions: [5, 10, 15, 20],
    columns: [
      {title: '#', field: 'uid', sortable: true},
      {title: 'Date', field: 'date_at', sortable: true},
      {title: 'Nombre', field: 'name', sortable: true},
      {title: 'Precio', field: 'total_price', sortable: true},
      {title: 'Action', field: 'action', tdComp: 'Opt'},
    ],
    data: [],
    total: 0,
    selection: [],
    query: {},
  }`enter code here`
},

其中选择:

  import actionItem from "../xxx.vue";
  import DisplayRow from "../Utils/nested-DisplayRow.vue";

components: {"Opt": actionItem, , 'DisplayRow': DisplayRow},

因此,在 ActionItem 组件中,您可以创建组件,该组件将成为您的行操作。

最新更新