joomla 1.6 中调用函数 getLabel()
从 Joomla 1.5.22 升级到 1.6 beta 14 后,尝试调用 xml 文件中的参数时出现此错误:致命错误:在非对象上调用成员函数 getLabel()
代码位于 view.php 中
max_chars参数从models/setting.xml中获取,代码为:
我做错事了吗..?请帮助我……
After upgrading from Joomla 1.5.22 to 1.6 beta 14 I am getting this error when trying to call parameter in the xml file : Fatal error: Call to a member function getLabel() on a non-object
the code is in view.php
form->getInput('max_chars'); ?>
the max_chars parameter obtained from models/setting.xml, the code is :
Am I doing wrong thing..? pls help me......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我评论这些行时,我遇到了类似的问题,我收到一条错误消息
我不小心用 JModelList 而不是 JModelAdmin 的模型替换了 User 模型,
请确保您使用正确的模型就是我所说的。
使用更多代码会更容易了解问题所在。
希望这会有所帮助...
I had a similar problem once I commented the lines out I got an error message
I had accidentally replaced User model with a models for an JModelList instead of JModelAdmin
make sure your using the right model is all I'm saying.
It would be easier to know what the issue is with more of your code.
Hope this helps a little...