- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Magento 和 Zend 框架的新手。以下是 Mage_Customer_AccountController 中的两个示例:
第 127 行
public function loginPostAction(){
if ($this->_getSession()->isLoggedIn()) {
$this->_redirect('*/*/');
return;
}
public function createAction()
{
if ($this->_getSession()->isLoggedIn()) {
$this->_redirect('*/*');
return;
}
最佳答案
这些行是相等的,因为 Magento 在内部将 url 路径修改为以“/”结尾的规范 View 。
编写一次 '*/*/' 而其他时间编写 '*/*' 的原因只是缺乏为 Magento 开发人员描述此类情况的样式指南。您可以使用任何您喜欢的形式。
关于zend-framework - _redirect ('*/*/' ) 和 _redirect ('*/*' ) 之间的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4601218/
我是 Magento 和 Zend 框架的新手。以下是 Mage_Customer_AccountController 中的两个示例: 第 127 行 public function loginPos
似乎是一个电话 $this->_redirect('*/*/myaction',$myargs); 没有正确转义参数所以如果 $myargs=array(p1=>'string that has +
代码(取自 SO ): // create the logger and log writer $writer = new Zend_Log_Writer_Firebug(); $logger = n
首先我想澄清一下我是 PHP 和 Zend 的新手。 我正在使用 zend 框架开发一个网站,这里有一个 Action 调用 successAction.... public function suc
我的行为不正常使用 Zend Controller _redirect方法。 我的应用程序副本是通过我的 DocumentRoot 中的符号链接(symbolic link)生成的。 .我的默认路由器
我读过 $this->getHelper('[helper_name]')优于 $this->_helper->[helper_name] .我没能找到任何文档,其中哪一个更好/更受欢迎:$this-
我正在使用 Vue CLI 开发一个单页应用程序,并希望历史推送状态能够正常工作,以便我获得干净的 URL。 我必须遵循这个:https://www.netlify.com/docs/redirect
此问题仅发生在 Netlify 的生产环境中。它不会出现在开发环境中。 通常,我潜伏并搜索以找到答案,或者从相关答案中汇总一些东西,但是这个让我很难过...... 我有一个在 Netlify 上运行的
我是一名优秀的程序员,十分优秀!