我是靠谱客的博主 可靠烤鸡,最近开发中收集的这篇文章主要介绍magento2.4 用户信息提示 Call to a member function getId() on null,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题说明:

点开用户信息提示 Call to a member function getId() on null 

解决方法

查看var/log/system.log日志文件

main.CRITICAL: Error: Call to a member function getId() on null in vendor/magento/module-customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php:63

 确定出错位置,发现是$this->_coreRegistry->registry('subscriber')为空导致getId()出错,修改代码加入空值判断。

$this->_coreRegistry->registry('subscriber')?$this->_coreRegistry->registry('subscriber')->getId() : null

最后

以上就是可靠烤鸡为你收集整理的magento2.4 用户信息提示 Call to a member function getId() on null的全部内容,希望文章能够帮你解决magento2.4 用户信息提示 Call to a member function getId() on null所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部