Magento 2: Ajax formunu kullanarak özel formda nasıl veri gönderilir?


11

Herkes bana Ajax kullanarak veri göndermek için Magento-2 sayfasında basit bir form oluşturmak nasıl açıklayabilir miyim? Ajax kullanmadan veri gönderen bir form ve denetleyici eylemim zaten var.


Sanırım bu bağlantı buraya tıklamanıza
Pankaj Sharma


Yanıt hatası gösteriliyor> Tanımsız özellik:> ad alanı \ modulename \ Denetleyici \ Dizin \ Dizin \ Durdurucu :: $ _ jsonHelper Cevabı geliştirmek için lütfen paylaşın
Rohit Chauhan

Yanıtlar:


16

Sadece ajax kullanmak için phtml dosyanızda aşağıdaki kodu ayarlayabilirsiniz, aşağıdaki kodda customurl değiştirmek zorunda ,

<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>

denetleyici dosyanız execute () yönteminin içinde,

<?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
$ this-> getRequest () -> getParam ('customdata1') kullanarak denetleyicide veri alabilirsiniz;
Rakesh Jesadiya

1
komut dosyası yanıtında yanıt var.
Rakesh Jesadiya

2
complete: işlevi (yanıt) burada yanıtınız var.
Rakesh Jesadiya

1
yanıtı denetleyicide $ this -> _ jsonHelper-> jsonEncode (['default_country' => $ ülke, 'state' => $ state,]) kodunda
yanıt vermelisiniz

1
yukarıdaki durumda default_country ve eyalet yanıttan döndürülür
Rakesh Jesadiya

13

Kabul edilen cevap iyidir, ama bence magento core'un sunduğu js doğrulamasından faydalanabilirsiniz. Bu nedenle, aşağıdaki js betiğini kullanmayı deneyin:

<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>

Denetleyicinin aşağıdaki gibi JSON yanıtı döndürmesi gerektiğini unutmayın:

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

return $response;

1
Kabul edilen cevaptan çok daha iyi bir çözüm. Teşekkürler adam
Medine
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.