我正在尝试构建一个外部 webApp 来在 Joomla 中上传一些产品!与美德玛特。
一切都按预期工作,但我仍然对Jfactory::getApplication
.
我已按照本教程进行操作:
http://docs.joomla.org/How_to_create_a_stand-alone_application_using_the_Joomla!_Platform
但是当我调用VmModel
on__construct
方法时,它会调用 a parent::__construct($config)
:
$this->_cidName = $cidName;
// Get the pagination request variables
$mainframe = JFactory::getApplication() ;
$limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int');
这会引发以下错误:
vCall 到未定义的方法 JException::getUserStateFromRequest()
如果可以帮助还有:
vNotice:尝试在第 201 行的 /home/giuseppe/homeProj/ModaNuovo/libraries/joomla/application/application.php 中获取非对象的属性
提出:
public static function getInstance($client, $config = array(), $prefix = 'J')
{
if (empty(self::$instances[$client]))
{
// Load the router object.
$info = JApplicationHelper::getClientInfo($client, true);
$path = $info->path . '/includes/application.php';
if (file_exists($path))