zoukankan      html  css  js  c++  java
  • Vue.js Ajax动态参数与列表显示

    一、动态参数显示

    1、引入js

    <script type="text/javascript" src="/js/vue.min.js"></script>
    <script type="text/javascript" src="/js/jquery-2.1.3.js"></script>

    2、html

    <div id="app">
        <p>{{ message }}</p>
        <button v-on:click="showData">显示数据</button>
    </div>

    3、JS

    new Vue({
                    el: '#app',
                    data: {
                        message: ''
                    },
                    methods: {
                        showData: function () {
                            var _self = this;
                            $.ajax({
                                type: 'GET',
                                url: '...',
                                success:function(data) {
                                    _self.message = JSON.stringify(data);
                                }
                            });
                        }
                    }
                })

    二、动态列表显示

    1、引入js

    <script type="text/javascript" src="/js/vue.min.js"></script>
    <script type="text/javascript" src="/js/jquery-2.1.3.js"></script>

    2、html

    <div id="app">
        <table>
            <thead>
            <tr>
                <th style='3%; text-align: left'>ID</th>
                <th style='5%; text-align: left'>名称</th>
                <th style='10%; text-align: left'>条形码</th>
                <th style='10%; text-align: left'>简称</th>
            </tr>
            </thead>
            <tbody>
                <tr v-for="goods in goodsList">
                    <td>{{goods.id}}</td>
                    <td>{{goods.name}}</td>
                    <td>{{goods.barcode}}</td>
                    <td>{{goods.shortName}}</td>
                </tr>
            </tbody>
        </table>
        <button v-on:click="nameSearch()">查询</button><br><br>
    </div>

    3、js

    var goodsVue = new Vue({
                    el: '#app',
                    data: {
                        goodsList : ''
                    },
                    methods: {
                        nameSearch: function () {
                            var _self = this;
                            $.ajax({
                                type: 'GET',
                                url: '...',
                                success:function(data) {
                                    _self.goodsList = data;
                                }
                            });
                        }
                    }
                })

  • 相关阅读:
    遇到的两个问题
    项目分析(map复习)
    while小问题
    二级指针
    映射文件实现进程通信
    struct {0}初始化
    用boost共享内存实现进程通信的例子
    mongo二维数组操作
    项目分析(channelid是如果产生的)
    string为什么可以写入共享内存
  • 原文地址:https://www.cnblogs.com/1955/p/8390833.html
Copyright © 2011-2022 走看看