实现layui与MySQL连接表需要以下几个步骤:
第一步,建立数据库连接
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'password',
database : 'my_db'
});
connection.connect(function(err) {
if (err) throw err;
console.log("Connected!");
});
第二步,执行SQL语句
var sql = "SELECT * FROM customers";
connection.query(sql, function (err, result) {
if (err) throw err;
console.log(result);
});
第三步,将数据渲染到layui表格中
layui.use('table', function(){
var table = layui.table;
table.render({
elem: '#demo'
,url: '/demo/table/user/' //数据接口
,cols: [[ //表头
{field: 'id', title: 'ID', width:80, sort: true, fixed: 'left'}
,{field: 'username', title: '用户名', width:80}
,{field: 'sex', title: '性别', width:80}
,{field: 'city', title: '城市', width:80}
,{field: 'sign', title: '签名', width: 177}
,{field: 'experience', title: '积分', width: 80, sort: true}
,{field: 'score', title: '评分', width: 80, sort: true}
,{field: 'classify', title: '职业', width: 80}
,{field: 'wealth', title: '财富', width: 135, sort: true}
]]
});
});
通过以上三个步骤就可以实现layui与MySQL连接表的操作了。需要注意的是,在实际应用中,需要根据具体场景修改SQL语句和表格渲染的代码。