通过Ajax请求获取ContentBuilder列表视图

时间:2013-11-21 10:33:34

标签: php jquery ajax joomla joomla-extensions

我正在使用Joomla 3和Crosstec Content Builder Extension,我为Fron-end用户创建了一个列表视图,它的成功运行没有任何问题:

http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6

我希望在没有完整网站的情况下通过Ajax请求获取扩展结果,但我无法找到正确的URL来实现此行为。

我尝试了很多东西,包括:

http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&format=raw
http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=ajax&id=6

我希望有些人可以帮助我。

编辑:

jQuery.ajax({
     type: "GET",
     url: "http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&format=raw",
     success: function (msg) {
         alert(msg);
     }
 });

1 个答案:

答案 0 :(得分:1)

如果您只想加载组件的html内容,请添加到网址tmpl=component

http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&tmpl=component