博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1.7 HelloWorld 添加视图
阅读量:5076 次
发布时间:2019-06-12

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

模型: 管理数据

控制器:执行任务,设置或者获取模型的状态,请求视图显示

视图:显示被控件选中的内容

(1)Setting the controller

JController是一个管理控制器的类, 在site/helloworld.php添加如下代码。

 
 
 
// Perform the Request task$input= JFactory::getApplication()->input;$controller->execute($input->getCmd('task')); // Redirect if set by the controller$controller->redirect();
JControllerLegacy::getInstance('HelloWorld');
(注意3.x版本使用的是JControllerLegacy,如果看官网上使用的是JController)
创建一个名为HelloWorldController的控制器类,Joomla将会在controller.php中查找这个类的声明。
 
所以在site/controller.php文件中写入下面代码:
 
 
当没有指定task的值时,默认task将会被执行,默认task任务是display,所以在HelloWorldController中创建display方法。
(2)Setting the view
当JController想去展示一个view的时候,他将会从目录component/com_helloworld/views/helloworld/目录下查找
site/views/helloworld/view.html.php
 
 
msg='Hello World'; // Display the view parent::display($tpl);}}
JView类的display方法会被JController类的task方法调用,在这个例子中display方法将会显示tmpl/default.php文件。
 
 
site/views/helloworld/tmpl/default.php
 

msg;?>

这个模板文件将会被JView类包含,所以$this指的是HelloWorldViewHelloWorld类。
 
 
helloworld.xml
 
Hello World!
November 2009
John Doe
john.doe@example.org
http://www.example.org
Copyright Info
License Info
0.0.2
Description of the Hello World component ...
sql/updates/mysql
index.html
helloworld.php
controller.php
views
Hello World!
index.html
helloworld.php
sql
 
 
 
 
 
 

转载于:https://www.cnblogs.com/codergma/p/4768117.html

你可能感兴趣的文章
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>
动态规划算法之最大子段和
查看>>
linux c:关联变量的双for循环
查看>>
深入浅出理解zend framework(三)
查看>>
python语句----->if语句,while语句,for循环
查看>>
javascript之数组操作
查看>>
LinkedList源码分析
查看>>
TF-IDF原理
查看>>
用JS制作博客页面背景随滚动渐变的效果
查看>>
JavaScript的迭代函数与迭代函数的实现
查看>>
一步步教你学会browserify
查看>>
Jmeter入门实例
查看>>
亲近用户—回归本质
查看>>
中文脏话识别的解决方案
查看>>
CSS之不常用但重要的样式总结
查看>>