input[name*=user]{margin-right: 10px;}
.m-pagination{margin-left: 10px;}
$(function(){
let user = ("login_user");
if(user != null && user != ''){
$('#user-nickname').html((user).name)
}
// 发送ajax查询需要的数据以及记录总数
$("#page").pagination({
pageIndex : 0,
pageSize: 4,
remote: {
url: 'http://localhost:8888/user/find',
success: function (data) {
// data为ajax返回数据
// console.log(data);
var html = template("artmodel",data);
$('#userinfBox').html("");
$('#userinfBox').append(html);
}
}
});
// 查询按钮
$('#find').click(function(){
// 销毁
$("#page").pagination('destroy');
$("#page").pagination({
pageIndex : 0,
pageSize: 4,
remote: {
url: 'http://localhost:8888/user/findByIdAndName',
success: function (data) {
// data为ajax返回数据
// (data);
var html = template("artmodel",data);
$('#userinfBox').html("");
$('#userinfBox').append(html);
},
pageParams: function(data){
return {
pageIndex:,
pageSize:,
id : $('input[name="user-id"]').val(),
name : $('input[name="user-name"]').val()
};
}
}
});
})
// 登录
$('#user-login').click(function(){
$.post(
'http://localhost:8888/user/login',
{},
function(res){
// 存 取对象都需要JSON对其进行处理
("login_user",(res));
let user = ("login_user");
((user).id);
},
'json'
)
})
// 删除
$(document).on('click','.del',function(){
let yesOrNo = confirm("你确定执行该操作么?")
// alert($(this).attr('delId'));
if(yesOrNo){
$.post(
'http://localhost:8888/user/del',
{
"userid" : $(this).attr('delId')
},
function(res){
if(res == 1){
alert("删除成功");
();
}
if(res == 0){
alert("删除失败")
}
},
'json'
)
}
})
})
查询
用户信息
idnameagebirthdaycno操作
新用户注册信息
添加
{{each list as user}}
{{}}{{}}{{}}{{}}{{}} 删除{{/each}}