VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > MySQL >
  • 支线第九篇:

添加用户:

表格  上是  数组

添加用户,

在数组中再加一组数据:

 

复制代码
addUser: function() {
                        this.userList.push({
                            name: this.name,
                            password: this.password,
                            call:this.call
                        });
                        // 添加完成后,清空数据
                        this.name = '';
                        this.password = '';
                        this.call = '';
                    },
大概这么个玩意
复制代码

 

后面的再研究研究

 

出处:https://www.cnblogs.com/FatTiger4399/p/15375667.html

相关教程