顯示2.控制器認識
controller是框架控制器資料夾
我們來寫一下自己的控制器,控制器檔名要和類名一直,類名首字母大寫
test.php檔案**
<?php
defined('basepath') or
exit('no direct script access allowed');
class
test
extends
ci_controller
public
function
welcome
()
}
訪問此控制器時,標準路徑是http://localhost/penderie/index.php/test/hello
http://localhost/penderie/index.php是入口
test是控制器名,hello是方法名
有時候不寫方法名會出現404錯誤,所以還是規範點全部寫上吧
3用控制器訪問view
view檔案下test.php**
<?php
defined('basepath') or
exit('no direct script access allowed');
class
test
extends
ci_controller
public
function
welcome
()
public
function
toview
()
}
view檔案下test.html**
charset="utf-8">
這是html檔案
body>
html>
通過http://localhost/penderie/index.php/test/toview路徑訪問
當方法
public
function
toview
()
view(『test』);裡面不加html時訪問的是test.php
當view(『test.html』);裡面加html時訪問的是test.html
今天就學這麼多,model內容比較多等下次再講吧
SSH框架入門
目前最新版本是spring framework 2.5.6 with dependencies.zip,該包不僅包含spring的開發包,而且包含spring編譯和執行所依賴的第三方類庫 aspectj 該路徑下包含了spring支援aspectj所需類的源 也包含了相關測試用例檔案 dist 該資...
Tigo框架入門
給大家介紹乙個go語言的web framework,tigo框架。tigo框架的設計風格有點類似於tornado,從python轉go的小夥伴可以看看。首先,安裝 go get github.com karldoenitz tigo 安裝結束後來編寫乙個簡單地hello world,如下 url路由...
struts框架入門
1.struts的jar包作用 2.步驟 3.一般網頁呼叫乙個類的步驟是 jsp 給servlet,servlet中建立類的例項,並呼叫相應的方法。4.關鍵 分析 struts.xml配置如下,struts.xml的作用就是 讓struts的filter攔截,並通過xml檔案找到 primer 1....