分配是一个从 Zend_Controller_Request_Abstract 中提取module名,controller名,action名,和其中包含的可选的参数,然后实例化一个控制器并调用控制器中的action的一个过程.如果module,controller,action中的任何一个没有找到,将使用它们的默认值。
Zend_Controller_Dispatcher_Standard 指定了`index` 作为controller, action 的默认值, 用 `default` 作为module的默认值.尽管如此,还是允许开发者通过setDefaultController(), setDefaultAction(), and setDefaultModule() 等分配器方法来相应的改变默认值.
分配发生在前端控制器的一个循环中.在分配发生之前, 前端控制器通过 路由来找到 用户指定的module, controller, action 的值和可选的参数.然后就进入一个分配请求的循环.
在每一个遍历开始时, 它(Dispatcher)在请求对象中设置一个当前 action 已经分配的标志.如果一个 action 或者 pre/postDispatch 插件重置了这个标志, 分配循环将继续,并试图 分配一个新的请求.通过改变请求中的controller 和/或者 action 和重置分配标志, 开发者可能定义一个可以执行的请求链.
是行为控制器中的 _forward 方法控制了这样的分配; 通过在 任何 pre/postDispatch(), 或者action 方法中提供 一个 action, controller, module 和可选的附加参数, 你就可以 请求一个新的action。
示例代码:
<?php
public function fooAction()
{
// forward to another action in the current controller and module:
$this->_forward('bar', null, null, array('baz' => 'bogus'));
}
public function barAction()
{
// forward to an action in another controller, FooController::bazAction(),
// in the current module:
$this->_forward('baz', 'foo', null, array('baz' => 'bogus'));
}
public function bazAction()
{
// forward to an action in another controller in another module,
// Foo_BarController::bazAction():
$this->_forward('baz', 'bar', 'foo', array('baz' => 'bogus'));
}
?>
总结:Dispatcher 是 ZF 实现 MVC的重要组成部分,理解Dipatcher的功能对我们更好的应用 ZF或其它框架有很重要的意义。
可以认为分配的作用就类似于,在路由之后执行相应行为的一个过程,然后 返回response 对象。
介绍:
判断请求是否来自 XMLHttpRequest 对象的的方法: 如果请求来自XMLHttpRequest,服务器端将存在$_SERVER['HTTP_X_REQUESTED_WITH']变量,由此可以判断。
下面的代码摘自Zend_Controller_Request_Http:
* * Is the request a Javascript XMLHttpRequest?
* * Should work with Prototype/Script.aculo.us, possibly others.
* * @return boolean
*/
public function isXmlHttpRequest() {
return (
$this->getHeader('X_REQUESTED_WITH') == 'XMLHttpRequest');
}
测试了下zf中的Zend_Captcha,手册中的示例有点问题,以下是测试成功的代码。
<?php
class TestController extends Lyw0301_Controller_Action {
public function init() {
parent::init();
$this->view->title = '测试';
$this->view->baseUrl = $this->getFrontController()->getBaseUrl();
// $this->_helper->viewRenderer->setNoRender();
//Zend_Layout::getMvcInstance()->disableLayout();
}
function generateCaptcha() {
$captcha = new Zend_Captcha_Image();
$captcha->setTimeout('300')
->setWordLen('6')
->setHeight('80')
->setFont('./images/font/micross.ttf')
->setImgDir('./images/code');
$captcha->generate();
return $captcha->getId();
}
//validates captcha response
function validateCaptcha($captcha) {
$captchaId = $captcha['id'];
$captchaInput = $captcha['input'];
$captchaSession = new Zend_Session_Namespace('Zend_Form_Captcha_' . $captchaId);
$captchaIterator = $captchaSession->getIterator();
Zend_Debug::dump($captchaIterator);exit;
$captchaWord = $captchaIterator['word'];
if($captchaWord) {
if( $captchaInput != $captchaWord ){
return false;
} else {
return true;
}
} else {
return false;
}
}
public function indexAction() {
$captchaId = $this->generateCaptcha();
$this->view->captchaId = $captchaId;
if(isset()($_POST['captcha'])) {
$captcha = $_POST['captcha'];
if( $this->validateCaptcha($captcha) ) {
$this->view->message = 'yes';
} else {
$this->view->message = 'no';
}
}
}
}
?>