index.php查询,这个是前台的index.php
public function index()
{
$slideImgs = Db::name("slideimg")
->where("status",'=','normal')
->limit(5)
->order('sort','desc')->select();
$productList = Db::name("product")
->where("deletetime",'exp','is null')
->limit(10)
->order('updatetime','desc')->select();
$this->view->assign('slideImgs',$slideImgs);
$this->view->assign('productList',$productList);
$this->view->assign('title', __('首页'));
//设置页面名称,方便根据页面名称加载不同的js和css
$this->view->assign('pageName','index' );
return $this->view->fetch();
}
模板代码文章来源:https://www.toymoban.com/news/detail-844433.html
<div>
<!--{php}print_r($slideImgs);{/php}-->
<!--{php}print_r($productList);{/php}-->
{foreach $slideImgs as $key=>$img }
<img src="{$img.image}"/>
{/foreach}
{foreach $productList as $key=>$product }
<img src="{$product.product_image}"/>
<div>{$product.name}</div>
<div>{$product.marketPrice}</div>
{/foreach}
</div>
结果
文章来源地址https://www.toymoban.com/news/detail-844433.html
到了这里,关于fastadmin学习08-查询数据渲染到前端的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!