com_ajax从joomla类别中获取文章

时间:2016-02-15 07:31:26

标签: php ajax joomla

我正在使用com_ajax从某个类别中获取文章, 我试过打电话

index.php?option=com_ajax&format=json&module=mod_articles_category&id=113

但它返回以下结果,

{"success":false,"message":"Module mod_mod_articles_category is not 
published, you do not have access to it, or it's not assigned to the 
current menu item.","messages":null,"data":null}

是否可以使用com_ajax获取数据?

1 个答案:

答案 0 :(得分:0)

似乎你只需要在没有' mod _'的情况下传递模块。前缀。

根据documentaion这应该有效:

的index.php选项= com_ajax&安培;格式= JSON&安培;模块= articles_category和ID = 113

我猜它会为你添加前缀,所以你最终得到mod_mod _

此外,您需要确保模块已发布到菜单项,并且您有权访问模块等

因此,应该可以使用com_ajax来获取数据。