Magento 2: come inviare i dati utilizzando il modulo Ajax in forma personalizzata?


11

Qualcuno può spiegarmi come posso creare un semplice modulo sulla pagina Magento-2 per inviare dati utilizzando Ajax? Ho già un'azione su modulo e controller, che invia dati senza usare Ajax.


Penso che questo link ti aiuterà a fare clic qui
Pankaj Sharma,

guarda la mia risposta, potrebbe aiutare più di quello accettato
LucScu,

Visualizzazione dell'errore alla risposta> Proprietà non definita:> namespace \ modulename \ Controller \ Index \ Index \ Interceptor :: $ _ jsonHelper Per favore, condividi per migliorare la risposta
Rohit Chauhan

Risposte:


15

Puoi semplicemente impostare il codice qui sotto nel tuo file phtml per usare Ajax, devi cambiare il tuo codice nel codice sottostante,

<script type="text/javascript">
    require(["jquery"],function($) {
        $(document).ready(function() {
            var customurl = "<?php echo $this->getUrl().'frontname/index/index'?>";
            $.ajax({
                url: customurl,
                type: 'POST',
                dataType: 'json',
                data: {
                    customdata1: 'test1',
                    customdata2: 'test2',
                },
            complete: function(response) {             
                country = response.responseJSON.default_country;
                state = response.responseJSON.state;         
                console.log(state+' '+country);   
                },
                error: function (xhr, status, errorThrown) {
                    console.log('Error happens. Try again.');
                }
            });
        });
    });
</script>

nel metodo execute () del file del controller ,

<?php
 use Magento\Framework\Controller\ResultFactory;
 public function execute()
    {
        $resultPage = $this->resultFactory->create(ResultFactory::TYPE_PAGE);

        $response = $this->resultFactory->create(ResultFactory::TYPE_RAW);
        $response->setHeader('Content-type', 'text/plain');
        $country = 'india';
        $state = 'gujarat';
        $response->setContents(
            $this->_jsonHelper->jsonEncode(
                [
                    'default_country' => $country,
                    'state' => $state,
                ]
            )
        );
        return $response;
    } 

4
puoi ottenere i dati nel controller usando $ this-> getRequest () -> getParam ('customdata1');
Rakesh Jesadiya,

1
la risposta sta arrivando nella risposta dello script.
Rakesh Jesadiya,

2
completo: funzione (risposta) qui hai la risposta.
Rakesh Jesadiya,

1
devi impostare la risposta sopra $ this -> _ jsonHelper-> jsonEncode (['default_country' => $ country, 'state' => $ state,]) nel controller
Rakesh Jesadiya

1
nel caso precedente default_country e state sono di ritorno dalla risposta
Rakesh Jesadiya

13

La risposta accettata è buona, ma penso che potrebbe essere utile approfittare della validazione js che offre il core di magento. Quindi, prova a utilizzare sotto js script:

<script type="text/javascript">
require([
    "jquery",
    "mage/mage"
],function($) {
    $(document).ready(function() {
        $('#form_id').mage(
            'validation',
            { 
                submitHandler: function(form) {
                    $.ajax({
                        url: "url to module/controller/action",
                        data: $('#form_id').serialize(),
                        type: 'POST',
                        dataType: 'json',
                        beforeSend: function() {
                            // show some loading icon
                        },
                        success: function(data, status, xhr) {
                            // data contains your controller response
                        },
                        error: function (xhr, status, errorThrown) {
                            console.log('Error happens. Try again.');
                            console.log(errorThrown);
                        }
                    });
                }
            }
        );
    });
});
</script>

Non dimenticare che il controller deve restituire una risposta JSON come:

$response = $this->resultFactory
    ->create(\Magento\Framework\Controller\ResultFactory::TYPE_JSON)
    ->setData([
        'status'  => "ok",
        'message' => "form submitted correctly"
    ]);

return $response;

1
Soluzione decisamente migliore della risposta accettata. Grazie amico
medina,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.