zend framework 1.11有关问题
程序员文章站
2022-04-26 10:12:09
...
zend framework 1.11问题
在控制器中,$this->getRequest->...没有getPost() getServer()等方法,或者说是用此方法得不到值,这是为什么啊,
谁能帮帮我啊
------解决方案--------------------
就是说原来是有的?
那你应先看看他的说明文档
------解决方案--------------------
zend 不是出了2.0 而且还不能向下兼容嘛,要是学习的话就不要1.x咯...
------解决方案--------------------
实在不行就$_GET $_POST喽
$request = $this->getRequest();
$request->getParam('username')
$reponse=$this->getResponse();
if ($request->isPost()) {
$username = $request->getPost('username');
}
应该木有问题啊
在控制器中,$this->getRequest->...没有getPost() getServer()等方法,或者说是用此方法得不到值,这是为什么啊,
谁能帮帮我啊
------解决方案--------------------
就是说原来是有的?
那你应先看看他的说明文档
------解决方案--------------------
zend 不是出了2.0 而且还不能向下兼容嘛,要是学习的话就不要1.x咯...
------解决方案--------------------
实在不行就$_GET $_POST喽
$request = $this->getRequest();
$request->getParam('username')
$reponse=$this->getResponse();
if ($request->isPost()) {
$username = $request->getPost('username');
}
应该木有问题啊
相关文章
相关视频
上一篇: 简单易懂,Session的工作方式(转)_PHP教程
下一篇: delegate事件和on事件详解