Magento 2:カスタムフォームでAjaxフォームを使用してデータを送信する方法


11

Ajaxを使用してデータを送信するためにMagento-2ページに簡単なフォームを作成する方法を誰かに説明してもらえますか?ajaxを使用せずにデータを送信するフォームとコントローラーアクションがすでにあります。


このリンクは、ここをクリック
Pankaj Sharma

私の答えを見てください、それは受け入れられたものよりも役立つかもしれません
LucScu

応答に対するエラーを表示>未定義のプロパティ:> namespace \ modulename \ Controller \ Index \ Index \ Interceptor :: $ _ jsonHelper回答を改善するために共有してください
Rohit Chauhan

回答:


15

ajaxを使用するようにphtmlファイルで以下のコードを設定できます。以下のコードでcustomurlを変更する必要があります。

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

コントローラファイルのexecute()メソッド内で、

<?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');を使用して、コントローラーでデータを取得できます。
Rakesh Jesadiya 2017

1
応答はスクリプト応答に含まれています。
Rakesh Jesadiya、2017

2
complete:function(response)ここにレスポンスがあります。
Rakesh Jesadiya

1
上記の$ this-> _ jsonHelper-> jsonEncode(['default_country' => $ country、 'state' => $ state、])コードに応答を設定する必要があります
Rakesh Jesadiya

1
上記の場合、default_countryとstateは応答から返されます
Rakesh Jesadiya 2017

12

受け入れられた答えは良いですが、magentoコアが提供するjs検証を利用すると役立つと思います。だから、以下のjsスクリプトを使用してみてください:

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

コントローラが次のようなJSON応答を返す必要があることを忘れないでください。

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

return $response;

1
受け入れられた答えよりもはるかに優れたソリューション。おかげで男
メディナ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.