joomla 1.6 中调用函数 getLabel()

发布于 2024-10-04 02:14:49 字数 322 浏览 1 评论 0原文

从 Joomla 1.5.22 升级到 1.6 beta 14 后,尝试调用 xml 文件中的参数时出现此错误:致命错误:在非对象上调用成员函数 getLabel()

代码位于 view.php 中

  • 表单->getLabel('max_chars'); ?> 表单->getInput('max_chars'); ?>
  • 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->getLabel('max_chars'); ?>
    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 技术交流群。

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

    发布评论

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

    评论(1

    你的背包 2024-10-11 02:14:49

    当我评论这些行时,我遇到了类似的问题,我收到一条错误消息

    在文件中找不到模型类 compontentModelUser

    我不小心用 JModelList 而不是 JModelAdmin 的模型替换了 User 模型,

    请确保您使用正确的模型就是我所说的。

    使用更多代码会更容易了解问题所在。

    希望这会有所帮助...

    I had a similar problem once I commented the lines out I got an error message

    Model class compontentModelUser not found in file

    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...

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