一、
1、已有文件IndexActionclassphp,在此文件中新建函数page,
则在Tpl(模板文件夹)下,Index文件夹中,新建页面模板名为pagehtml
2、新建文件AdminActionclassphp,在此文件中新建函数beauty_page,
则在Tpl文件夹下,新建文件夹Admin,在此文件夹下新建页面模板,命名为beauty_pagehtml
二、若是不想在Tpl下新建文件夹,则可以在configphp中加上模板路径:
'TMPL_FILE_DEPR' => '_' // 减少一个文件夹目录,目录下文件控制器_文件名称
比如:在Action下的AdminActionclassphp中,新建函数desc,则对应的在Tpl文件夹下新建模板文件,命名为Admin_deschtml给你修正一下吧,tbl_teachmaterial_baseinfo应该是你的表名吧,那就这样写!另外是不是传到模板里?
function
kidlist(){
$tb_teachbase
=
m
(
"teachmaterialbaseinfo"
);
$num=某个条件;
$result=$tb_teachbase->where("su_id='$num'")->select();
$this->assign('abc',$result);
if($result){
$this->success('查找成功');
}else{
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)