How to use Joomla Ajax Interface for my own plugin

人走茶凉 提交于 2019-12-03 08:47:25

Below is the code which triggers ajax call -

JPluginHelper::importPlugin('ajax');
$plugin     = ucfirst($input->get('plugin'));
$dispatcher = JEventDispatcher::getInstance();

try
{
    $results = $dispatcher->trigger('onAjax' . $plugin);
}
catch (Exception $e)
{
    $results = $e;
}   

First line says plugin should be of ajax type and in your code its content type. Also method and class name convention is not correct as per documentation -

The plugin class name following the plgAjax[Name] convention.
The plugin function name following the onAjax[Name] convention.

SO need to change that first it should be -

<?php defined('_JEXEC') or die;

// Import library dependencies
jimport('joomla.plugin.plugin');

class plgAjaxMyplugin extends JPlugin
{

    function onAjaxMyplugin()
    {

        $data = array("test");
        return $data;

    }
}

//jQuery

jQuery.ajax(
    {
        type: "POST",
        url: "index.php?option=com_ajax&plugin=myplugin&format=json",
        success: function(data)
        {
             //var response = jQuery.parseJSON(data);
             console.log(data);
        }
    });

//XML

<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5"
           type="plugin"
           group="ajax"
           method="upgrade">
    <name>Ajax - Myplugin</name>
    <version>0.1</version>
    <creationDate>Jan 28, 2015</creationDate>
    <author>test</author>
    <authorEmail>admin@change.me</authorEmail>
    <authorUrl>http://www.test.com</authorUrl>
    <license>GNU General Public License version 2 or later</license>
    <copyright>Copyright (C) 2013 betweenbrain llc. All rights reserved.</copyright>
    <description>Joomla Ajax Plugin</description>

    <files>
        <filename plugin="myplugin">myplugin.php</filename>
    </files>

</extension>

The important notice:

in your ajax call add group of your plugin :

jQuery.ajax(
{
    type: "POST",
    url: "index.php?option=com_ajax&plugin=myplugin&method=onAjaxSendMail&format=json",
    success: function(data)
    {
         var response = jQuery.parseJSON(data);
         console.log(response);
    }
});

change to :

jQuery.ajax(
{
    type: "POST",
    url: "index.php?option=com_ajax&group=Content&plugin=myplugin&method=onAjaxSendMail&format=json",
    success: function(data)
    {
         var response = jQuery.parseJSON(data);
         console.log(response);
    }
});
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!