致命错误:在非对象上调用成员函数 setTitle()

发布于 2024-11-02 08:24:51 字数 284 浏览 0 评论 0原文

当我尝试下订单时,在选择送货方式时出现错误,提示“

Fatal error: Call to a member function setTitle() on a non-object in /home/exclus31/public_html/../../../app/code/core/Mage/Customer/Block/Form/Login.php on line 40

但下订单没有问题并收到特定订单的确认消息”。

有人知道为什么会显示此错误以及解决方案吗?

When I try to placing an order, while selecting the shipping method an error is getting saying

Fatal error: Call to a member function setTitle() on a non-object in /home/exclus31/public_html/../../../app/code/core/Mage/Customer/Block/Form/Login.php on line 40

But there is no problem for placing the order and got the confirmation message for the particular order.

Any one know why this error is shown and a solution for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巷子口的你 2024-11-09 08:24:51

我也有这个错误。这是因为在加载布局之前,我在 IndexAction() 中调用了 getLayout() 。只需首先调用 loadLayout() 即可,如下所示:

public function IndexAction() {
  $this->loadLayout(); // do this first
  $this->getLayout()->getBlock('head')->setTitle($this->__('My Title')); // then this works
  $this->renderLayout(); // render as usual
}

我希望这会有所帮助

I had this error as well. It was because I was calling getLayout() in my IndexAction() before I had loaded the layout. Just call loadLayout() first, like so:

public function IndexAction() {
  $this->loadLayout(); // do this first
  $this->getLayout()->getBlock('head')->setTitle($this->__('My Title')); // then this works
  $this->renderLayout(); // render as usual
}

I hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文