标签:
1. 在使用jquery easyui datagrid时,显示数据,可能用户没有权限产品,那么我们可以使用类似:
$return = array("total"=>0,"rows"=>array(),"message"=>‘对不起,你没有权限.‘,"success"=>false); $this->ajaxReturn($return);
格式的代码返回数据,在datargid的onLoadSuccess方法获取返回的数据,如:
onLoadSuccess:function(data){ if(data.total == 0 && data.message ) {
//提示框 $.messager.show({ title:commonLang.Message.message, width:300, msg:data.message, timeout:6000, showType:‘slide‘, style:{ right:‘‘,
top:document.body.scrollTop+document.documentElement.scrollTop, bottom:‘‘ } }); } }
标签:
原文地址:http://www.cnblogs.com/fsong/p/4424512.html