在ThinkPHP中,我們可以利用URL地址來傳遞參數(shù)。ThinkPHP 框架會(huì)自動(dòng)解析 URL 地址中的參數(shù),并將其傳遞給相應(yīng)的控制器和方法。
例如,我們的 URL 地址為:http://localhost/index.php/Index/index?id=1&name=thinkphp
,其中 id=1
和 name=thinkphp
即為傳遞的參數(shù)。在控制器中,我們可以使用 $this->request->param()
方法來獲取 URL 地址中傳遞的參數(shù)。例如:
public function index() { $id = $this->request->param('id'); $name = $this->request->param('name'); echo 'ID=' . $id . ', Name=' . $name; }
登錄后復(fù)制登錄后復(fù)制
這樣,當(dāng)我們訪問上述的 URL 地址時(shí),控制器會(huì)輸出:ID=1, Name=thinkphp
。
除了 URL 地址傳遞參數(shù)外,我們也可以使用表單來傳遞參數(shù)。在 HTML 表單中,我們可以使用 name
屬性來標(biāo)識(shí)需要傳遞的參數(shù),而在控制器中同樣可以使用 $this->request->param()
方法來獲取表單中傳遞的參數(shù)。
例如,在 HTML 表單中,我們需要傳遞 id
和 name
參數(shù)。則可以這樣編寫 HTML 代碼:
<form action="/index.php/Index/index" method="get"> <input type="text" name="id" value="1"> <input type="text" name="name" value="thinkphp"> <input type="submit" value="提交"> </form>
登錄后復(fù)制
在控制器中,我們同樣可以使用 $this->request->param()
方法來獲取表單中傳遞的參數(shù)。例如:
public function index() { $id = $this->request->param('id'); $name = $this->request->param('name'); echo 'ID=' . $id . ', Name=' . $name; }
登錄后復(fù)制登錄后復(fù)制
這樣,當(dāng)我們提交表單后,控制器同樣會(huì)輸出:ID=1, Name=thinkphp
。
以上就是thinkphp如何傳遞GET參數(shù)的詳細(xì)內(nèi)容,更多請關(guān)注www.xfxf.net其它相關(guān)文章!