首页 > 其他 > 详细

前后端分离入门(5) 数据对接

时间:2021-08-14 23:44:25      阅读:30      评论:0      收藏:0      [点我收藏+]

使用eleui的table标签 渲染图书数据
完整代码

<template>
  <div>
    <el-table
        :data="tableData"
        border
        style="width: 100%">
      <el-table-column
          fixed
          prop="id"
          label="编号"
          width="80">
      </el-table-column>
      <el-table-column
          prop="name"
          label="书名"
          width="120">
      </el-table-column>
      <el-table-column
          prop="author"
          label="作者"
          width="140">
      </el-table-column>
      <el-table-column
          label="操作"
          width="100">
        <template slot-scope="scope">
          <el-button @click="handleClick(scope.row)" type="text" size="small">查看</el-button>
          <el-button type="text" size="small">编辑</el-button>
        </template>
      </el-table-column>
    </el-table>

  </div>
</template>

<script>
export default {
  methods: {
    handleClick(row) {
      console.log(row);
    },
  },
  created() {
    const _this=this//保存this 在回调函数时可以正常使用
    axios.get(‘http://localhost:8181/book/findAll‘).then(function (resp){
      _this.tableData=resp.data
    })
  },
  data() {
    return {
      tableData: [{
        id: ‘1‘,
        name: ‘java‘,
        author: ‘jie‘,
        },
        {
          id: ‘2‘,
          name: ‘java2‘,
          author: ‘jie2‘,
        },
        {
          id: ‘3‘,
          name: ‘java3‘,
          author: ‘jie3‘,
        },]
    }
  }
}
</script>

前后端分离入门(5) 数据对接

原文:https://www.cnblogs.com/OfflineBoy/p/15142129.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!