Maison > Article > développement back-end > Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?
看到一份Thinkphp做微博开发的代码,但有些地方没有看懂:
一。控制器中的代码:
<code>/*</code>
首页视图
*/
function Index(){
<code> //p(S('usermsg'.session('uid'))); //replace_weibo('adsf'); //p(C('FILTER')); $db=D('Weibo'); //取得当前用户的ID与当前用户 所有关注好友的ID $uid = array(session('uid'));//???? $where=array('fans'=>session('uid')); if (isset($_GET['gid'])){ $gid = I('gid','','intval'); $where['gid']=$gid; $uid = ''; } $result =M('follow')->where($where)->field('follow')->select(); if($result){ foreach ($result as $v){ $uid[] = $v['follow']; } } //组合WHERE条件,条件为当前用户自身的ID与当前用户所关注好友的ID $where = array('uid'=>array('IN',$uid));//where条件可以是二维数组吗? //统计数据总条数,用于分页 $count = $db->where($where)->count();// 查询满足要求的 总记录数 $Page = new \Think\Page($count,20);// 实例化分页类 传入总记录数和每页显示的记录数(20) // 进行分页数据查询 注意limit方法的参数要使用Page类的属性 $limit=$Page->firstRow.','.$Page->listRows; $Page->setConfig('theme',"共 %TOTAL_ROW% 条记录 %FIRST% %UP_PAGE% %NOW_PAGE% / %TOTAL_PAGE% %DOWN_PAGE% %END% "); $Page->setConfig('prev','上一页'); $Page->setConfig('next','下一页'); //读取所有微博 $result= $db->getAll($where,$limit);//getAll()方法是驱动拓展里的 //p($result); $this->page= $Page->show();// 分页显示输出 $this -> weibo = $result; $this->display(); } </code>
二。视图中的代码:
<foreach name="weibo" item="v">
<if condition='!$v["isturn"]'>
<!--====================普通微博样式====================-->
<div class="weibo">
<!--头像-->
<div class="face">
<a href="%7B:U('/'%20.%20%24v%5B'uid'%5D)%7D">
<img src="<if%20condition='%24v%5B" face alt="Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?" >
__ROOT__/Uploads/Face/{$v.face}
<else></else>
__PUBLIC__/Images/noface.gif
" width='50' height='50'/>
</a>
</div>
<p>》》》》》<br>重点在这里:用户的头像$V.face 不知是来自哪里的。<br>weibo这个表中并没有face这一列,也没看到代码中去读取了另一个表中的信息,<br>它的weibo表结构是这样的:<br><img data-src="/img/bVs13V" alt="Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?" ></p>
<p>头像信息可能是来自这个表:<br><img data-src="/img/bVs13Z" alt="Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?" ></p>
<p>但首页这个表中也只有face50 face80 face180 而没有face这一列。</p>
<p>想请问它是怎样把不同表的数据放到同一个foreach中处理的?</p>
<p>原代码来自:https://github.com/milkbobo/Thinkphp3.2.3-weibo</p>
<h2>回复内容:</h2>
<p>看到一份Thinkphp做微博开发的代码,但有些地方没有看懂:<br>一<strong>。控制器中的代码:</strong></p>
<pre class="brush:php;toolbar:false"><code>/*</code></pre>
<li><ul><li><p>首页视图<br>*/</p></li></ul></li>
<ol><li>
<p>function Index(){</p>
<pre class="brush:php;toolbar:false"><code> //p(S('usermsg'.session('uid')));
//replace_weibo('adsf');
//p(C('FILTER'));
$db=D('Weibo');
//取得当前用户的ID与当前用户 所有关注好友的ID
$uid = array(session('uid'));//????
$where=array('fans'=>session('uid'));
if (isset($_GET['gid'])){
$gid = I('gid','','intval');
$where['gid']=$gid;
$uid = '';
}
$result =M('follow')->where($where)->field('follow')->select();
if($result){
foreach ($result as $v){
$uid[] = $v['follow'];
}
}
//组合WHERE条件,条件为当前用户自身的ID与当前用户所关注好友的ID
$where = array('uid'=>array('IN',$uid));//where条件可以是二维数组吗?
//统计数据总条数,用于分页
$count = $db->where($where)->count();// 查询满足要求的 总记录数
$Page = new \Think\Page($count,20);// 实例化分页类 传入总记录数和每页显示的记录数(20)
// 进行分页数据查询 注意limit方法的参数要使用Page类的属性
$limit=$Page->firstRow.','.$Page->listRows;
$Page->setConfig('theme',"共 %TOTAL_ROW% 条记录 %FIRST% %UP_PAGE% %NOW_PAGE% / %TOTAL_PAGE% %DOWN_PAGE% %END% ");
$Page->setConfig('prev','上一页');
$Page->setConfig('next','下一页');
//读取所有微博
$result= $db->getAll($where,$limit);//getAll()方法是驱动拓展里的
//p($result);
$this->page= $Page->show();// 分页显示输出
$this -> weibo = $result;
$this->display();
}
</code></pre>
<p>二<strong>。视图中的代码:</strong></p>
</li></ol>
<pre class="brush:php;toolbar:false"><code><foreach name="weibo" item="v">
<if condition='!$v["isturn"]'>
<!--====================普通微博样式====================-->
<div class="weibo">
<!--头像-->
<div class="face">
<a href="%7B:U('/'%20.%20%24v%5B'uid'%5D)%7D">
<img src="<if%20condition='%24v%5B" face alt="Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?" >
__ROOT__/Uploads/Face/{$v.face}
<else></else>
__PUBLIC__/Images/noface.gif
" width='50' height='50'/>
</a>
</div>
<p>》》》》》<br>重点在这里:用户的头像$V.face 不知是来自哪里的。<br>weibo这个表中并没有face这一列,也没看到代码中去读取了另一个表中的信息,<br>它的weibo表结构是这样的:<br><img data-src="/img/bVs13V" alt="Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?" ></p>
<p>头像信息可能是来自这个表:<br><img data-src="/img/bVs13Z" alt="Thinkphp3.2的模板中同一个foreach中要用到不同表的数据,应该怎样处理?" ></p>
<p>但首页这个表中也只有face50 face80 face180 而没有face这一列。</p>
<p>想请问它是怎样把不同表的数据放到同一个foreach中处理的?</p>
<p>原代码来自:https://github.com/milkbobo/Thinkphp3.2.3-weibo</p>
<p class="answer fmt" data-id="1020000004497633">
</p>
<p>Index/Home/Model/CommentModel.class.php </p>
<p>10 'id','content','time','wid',//'uid',<br>11 '_type'=>'LEFT'<br>12 ),<br>13 'userinfo'=>array(<br>14 'username','face50'=>'face','uid',<br>15 '_on'=>'comment.uid = userinfo.uid'<br>16 ),</p>
</div></if></foreach></code></pre>
</div></if></foreach>