href:'__URL__/sblog/id/'+idd,
//$json为NULL输出模板。为1时输出列表数据到前端,格式为Json public function sblog($json=NULL,$id=NULL){ if(!is_int((int)$json)){ $json = NULL; } //dump($id); 这里能显示ID为16 if($json==1){ $sblog = M('Sbly_table'); //$id = intval($id); //$info = $sblog->order('id desc')->where('lj_sbid='.$id)->select(); $info = $sblog->order('id desc')->select(); $new_info = array(); foreach($info as $t){ if($t['lj_ly_zt']==1){ $t['lj_ly_zt'] = '开启'; }else{ $t['lj_ly_zt'] = '关闭'; } $new_info[] = $t; } echo json_encode($new_info); unset($sblog,$info,$new_info); }else{ $this->display(); } unset($Public); }
<script language="javascript">$(function(){ var th = $(".top").height(); th = 111-th; var wh = $(window).height()-th; $("#Sblog").datagrid({ //title:'列表', height:wh, autoRowHeight:true, singleSelect:true, striped:true, rownumbers:true, //显示行号 method:'get', url:'__ACTION__/json/1, //加载的URL pagination:true,//显示分页 pageSize:5,//分页大小 pageList:[5,10,15,20],//每页的个数 //fit:true,//自动补全 fitColumns:true, nowrap:Number('{$TC.config.DATA_NOWRAP}'), onBeforeLoad: function () { }, toolbar:[ //工具条 { iconCls: 'icon-reload', text : '刷新', handler: function(){ //回调函数 $("#Sblog").datagrid('reload'); } } ], columns:[[ {field:'lj_sbid',title:'ID',width:50,align:'center'}, {field:'title',title:'名称',width:250}, {field:'lj_ly_zt',title:'状态',width:100}, ]] });});</script><div class="con" id="SblogCon" onselectstart="return false;" style="-moz-user-select:none;"> <table id="Sblog"></table></div><div id="addSblog"></div>
理論上は何も間違っていません。 $id
の値を出力してみてください。
$id が 16 を出力できる順序になります。エラーは?
必要なものは $id の値ではありません
テンプレート SQL ステートメントの構文に問題があります
必要なものは値ではありません$id の
テンプレート SQL ステートメントの構文に問題があります
dump($id); 結果を投稿します
dump($id);
string(2) "16"
EasyUI を使用しませんか?
TinkPHP+EasyUI
sblog.htm テンプレート出力
Volist タグを使用して常に読み込み中... を表示し、Foreach タグに切り替えると OK