達夢資料庫修改表失敗 錯誤號: -6407 錯誤訊息: 鎖超時
阿新 • • 發佈:2021-01-07
技術標籤:layui
Layui框架資料表格的使用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Layui</title>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content ="IE=edge,chrome=1">
<!--讓viewport的寬度等於物理裝置上的真實解析度,不允許使用者縮放。一都主流的web app都是這麼設定的,它的作用其實是故意捨棄viewport,不縮放頁面,這樣dpi肯定和裝置上的真實解析度是一樣的,不做任何縮放,網頁會因此顯得更高細膩。-->
<!--width=device-width :表示bai寬度是裝置du螢幕的寬度 initial-scale=1.0:表示初始的縮放比例 minimum-scale=0.5:-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="layui/css/layui.css" media="all">
<style>
.layui-container{
width: 100%;
}
</style>
</head>
<body>
< div class="layui-container">
<table class="layui-hide" id="test"></table>
</div>
<script src="jquery-3.4.1.min.js"></script>
<script src="layui/layui.all.js"></script>
<script>
//注意:導航 依賴 element 模組,否則無法進行功能性操作
layui.use(['element','table'], function(){
var element = layui.element;
var table = layui.table;
//展示已知資料
table.render({
elem: '#test'
,cols: [[ //標題欄
{field: 'id', title: 'ID', width: 80, sort: true}
,{field: 'username', title: '使用者名稱', width: 120}
,{field: 'email', title: '郵箱', minWidth: 150}
,{field: 'sign', title: '簽名', minWidth: 160}
,{field: 'sex', title: '性別', width: 80}
,{field: 'city', title: '城市', width: 100}
,{field: 'experience', title: '積分', width: 80, sort: true}
]]
,url:"./testServlet"
/*,data: [{
"id": "10001"
,"username": "杜甫"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "116"
,"ip": "192.168.0.8"
,"logins": "108"
,"joinTime": "2016-10-14"
}, {
"id": "10002"
,"username": "李白"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "12"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
,"LAY_CHECKED": true
}, {
"id": "10003"
,"username": "王勃"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "65"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10004"
,"username": "賢心"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "666"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10005"
,"username": "賢心"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "86"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10006"
,"username": "賢心"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "12"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10007"
,"username": "賢心"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "16"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}, {
"id": "10008"
,"username": "賢心"
,"email": "[email protected]"
,"sex": "男"
,"city": "浙江杭州"
,"sign": "人生恰似一場修行"
,"experience": "106"
,"ip": "192.168.0.8"
,"logins": "106"
,"joinTime": "2016-10-14"
}]*/
,skin: 'line' //表格風格
,even: true
,page: true //是否顯示分頁
,limits: [5, 7, 10]
,limit: 5 //每頁預設顯示的數量
});
});
</script>
</body>
</html>
注意:後臺資料格式必須是json格式,layui才會正常解析並自動分頁展示