当前位置: 代码迷 >> PHP >> fatfree-f3小型php框架(2)
  详细解决方案

fatfree-f3小型php框架(2)

热度:35   发布时间:2016-04-28 19:30:07.0
fatfree-f3小型php框架(二)

我们的第一个例子不是太难懂吧,但是如果要做更多的功能与要求,我们就要在$f3 -> run()之前加一些别的路由:

$f3->route('GET /about',    function() {        echo 'Donations go to a local charity... us!';    });
如果你不想把全局的命名弄得太乱,fatfree有不同的映射路由的方法去管理面向对象的类与方法:

class WebPage {    function display() {        echo 'I cannot object to an object';    }}$f3->route('GET /about','WebPage->display');


http的要求同样也能路由到静态的类函数:

$f3->route('GET /login','Auth::login');



路由和符号:

作为fatfree这样一门强大的特殊领域语言,可以指定单一的路由区控制不同的情况:

$f3->route('GET [email protected]',    function($f3) {        echo $f3->get('PARAMS.count').' bottles of beer on the wall.';    });
[email protected][email protected]rew/98([email protected]值为98)或者/brew/99这样子,然后这个98就会赋值[email protected],调用funtion去输出“98 bottles of beer on the wall”.

除了数字之外,[email protected],例如/brew/unbreakable然后就输出“unbreakable bottles of beer on the wall”.

还有另外一招:

$f3->route('GET [email protected]',    function($f3,$params) {        echo $params['count'].' cars.';    });

还有一个方法,用“*”来代替任何不重要的信息,例如:
$f3->route('GET /car/*',    function() {        echo 'We have enough cars.';    });
就是无论输入什么在/car/#$#%#@$#@[email protected]


如果要改变方法去别的网页,我们可以用这招:

$f3->route('GET|HEAD /go_google',    function($f3) {        $f3->reroute('http://www.google.com');    });

也就是说输入 http://localhost/go_google就可以跳转页面了。(注意,这些都是在index.php中定义的,进入文件夹后会自动搜index中的路由,会自动识别到底是路由还是文件夹的,别担心)

reroute方法就是跳转页面用的,而且前面同事用到了GET和HEAD要求,除此之外还有一个POST,这个大家可以了解一下他们的区别。


给路由命名:

当你定义一个路由的时候,你可以给路由命名。可以用代码中路由的名字和模板来替代URL的类型。如果你想要这么做就要在定义路由的地方顺便定义了路由的名字,for example 

$f3->route('GET @beer_list: /beer', 'Beer->list');
同时要注意,路由的名字必须用php的命名规则。这个例子就说明[email protected]??。

然后调用的时候就要用到命名专属数组ALISASES,看一个调用的例子

<a href="[email protected]_list}}">view beer list</a>

( a href是超链接的意思,可以看看html的用法)

当然了这种用法还可以用来跳转页面,例如刚刚学的那个reroute函数:

$f3->reroute([email protected]_list'); // note the single quotes

这次就不是跳转到google上了,而是跳转到“/beer”的页面上。

同时,我们常用的重载函数也适合这种情况,例子:

$f3->route('GET @beer_list: [email protected]', 'Beer->bycountry');$f3->route('GET @beer_list: [email protected][email protected]', 'Beer->byvillage');// a set of key-value pairs is passed as argument to named route$f3->reroute([email protected]_list(@country=Germany)');// if more than one token needed$f3->reroute([email protected]_list(@country=Germany,@village=Rhine)');

[email protected]_list这个变量重载了,当然调用的分别是bycountry和byvillage两个不同的函数,然后根据这两个方法的不同来分别给参数,[email protected][email protected][email protected]?果给两个,自然就是调用下面那个。








1楼modiziri昨天 10:19
恩恩