我如何在joomla插件而不是模块中调用ajax帮助器

时间:2016-04-29 06:06:25

标签: php jquery ajax joomla

我想在joomla plugin中调用ajax到helper文件。我的文件夹结构是myplugin.php,myplugin.xml,helper.php,tmpl-> default.php。我从default.php调用ajax但它返回html。这是我的代码。

jQuery.ajax({
                    type: "POST",
                    url: "index.php?option=com_ajax&format=raw&plugin=myplugin",
                    data: {"Type": "insert"},
                    cache: false,
                    success: function (response)
                    {

请在我误会的地方帮忙。

0 个答案:

没有答案