博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ShopNC小实例
阅读量:4876 次
发布时间:2019-06-11

本文共 837 字,大约阅读时间需要 2 分钟。

1 shopnc 之模式: 2  shopnc一般的url访问为:http://localhost/shopnc1/admin/index.php?act=sui&op=hello 3 Controller: 4 控制器存放于\shopnc1\shop\control\xxx.php中  如 admin/control /sui.php 后台首页 5  6 class suiControl extends SystemControl { 7  function __construct(){ 8   parent::__construct();  9   }10   public function helloop() { 11  $model = Model(); 12  $brand_list = $model->table('area')->where(array('area_id'=>1))->select(); //print_r($brand_list);13  //exit; echo '111'; 14   $str = 'wertyuiosdfgthyujkl;fghjkl'; 15  Tpl::output('brand_list',$brand_list); 16  Tpl::output('guo',$str);17 Tpl::showpage('hello');18   } }19 2. Model:模型文件存放于\data\model 文件夹中,其中核心类db存放于\core\framework\db中20 21 3.view:显示页面shopnc1\shop\templates\default\   hello.php,注意控制器赋过来的变量 $output['brand_list'],前面加output22

 

转载于:https://www.cnblogs.com/boundless-sky/p/6061257.html

你可能感兴趣的文章
NgBook留言本开发全过程(1)
查看>>
LeetCode-指针法
查看>>
Python之路,Day12 - 那就做个堡垒机吧
查看>>
linux之shell之if、while、for语句介绍
查看>>
Mysql phpStudy升级Mysql版本,流产了怎么办?
查看>>
SQLServer之数据库行锁
查看>>
OFDM仿真
查看>>
代理模式
查看>>
AC日记——背包问题 V2 51nod 1086
查看>>
CSS关键字
查看>>
UIAlertView
查看>>
ES6快速入门(三)类与模块
查看>>
赛博web
查看>>
Java动手动脑第四讲课堂作业
查看>>
PowerDesigner 数据建模技术视频教程
查看>>
Webpack 开发服务器代理设置解决跨域问题
查看>>
Solr 15 - Solr添加和更新索引的过程 (文档的路由细节)
查看>>
DOS命令
查看>>
Oracle merge基本使用
查看>>
03-树1 树的同构
查看>>