Controller redirect on jquery post request from phtml template












0















I want to redirect user on button click from .phtml template file, however, really struggle to find a working solution.



Here is my controller with path of /batchorder/index/addtocart:



public function execute()
{
$this->_redirect('checkout/cart/index');
}


Here is my template file with the post request:



$("#addToCart").click(function(){ 
let controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>"
$.post( controllerUrl );
}


When I navigate to www.mydomain.com/batchorder/index/addtocart in my browser, the redirect is working fine, however, when hitting the button with id #addToCart the redirect is not working.



Is this even possible with the jQuery post request? Is there alternative way? I am sending some information to the controller with the post request and want to redirect in the controller once the operations are finished.



Any guidance will be highly appreciated.










share|improve this question



























    0















    I want to redirect user on button click from .phtml template file, however, really struggle to find a working solution.



    Here is my controller with path of /batchorder/index/addtocart:



    public function execute()
    {
    $this->_redirect('checkout/cart/index');
    }


    Here is my template file with the post request:



    $("#addToCart").click(function(){ 
    let controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>"
    $.post( controllerUrl );
    }


    When I navigate to www.mydomain.com/batchorder/index/addtocart in my browser, the redirect is working fine, however, when hitting the button with id #addToCart the redirect is not working.



    Is this even possible with the jQuery post request? Is there alternative way? I am sending some information to the controller with the post request and want to redirect in the controller once the operations are finished.



    Any guidance will be highly appreciated.










    share|improve this question

























      0












      0








      0








      I want to redirect user on button click from .phtml template file, however, really struggle to find a working solution.



      Here is my controller with path of /batchorder/index/addtocart:



      public function execute()
      {
      $this->_redirect('checkout/cart/index');
      }


      Here is my template file with the post request:



      $("#addToCart").click(function(){ 
      let controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>"
      $.post( controllerUrl );
      }


      When I navigate to www.mydomain.com/batchorder/index/addtocart in my browser, the redirect is working fine, however, when hitting the button with id #addToCart the redirect is not working.



      Is this even possible with the jQuery post request? Is there alternative way? I am sending some information to the controller with the post request and want to redirect in the controller once the operations are finished.



      Any guidance will be highly appreciated.










      share|improve this question














      I want to redirect user on button click from .phtml template file, however, really struggle to find a working solution.



      Here is my controller with path of /batchorder/index/addtocart:



      public function execute()
      {
      $this->_redirect('checkout/cart/index');
      }


      Here is my template file with the post request:



      $("#addToCart").click(function(){ 
      let controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>"
      $.post( controllerUrl );
      }


      When I navigate to www.mydomain.com/batchorder/index/addtocart in my browser, the redirect is working fine, however, when hitting the button with id #addToCart the redirect is not working.



      Is this even possible with the jQuery post request? Is there alternative way? I am sending some information to the controller with the post request and want to redirect in the controller once the operations are finished.



      Any guidance will be highly appreciated.







      magento2 magento2.2 jquery redirect






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 21 at 16:17









      Bare FeetBare Feet

      1,5711833




      1,5711833






















          1 Answer
          1






          active

          oldest

          votes


















          1














          What I would do is returning the url to redirect in a JSON object (for example) as response to Ajax call, and then deal with that response in the .phtml



          So...



          public function execute()
          {
          $response = new stdClass();
          $response->url = false;
          // your logic here, where you set the redirect url in $response->url if proceed
          die(json_encode($response));
          }


          And then, in .phtml



          $("#addToCart").click(function(){ 
          var controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>";
          $.post( controllerUrl, function( response ) {
          if (response.url){
          window.location.href = response.url;
          } else {
          // show some error
          }
          });
          });





          share|improve this answer
























          • My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

            – Bare Feet
            Jan 21 at 17:12













          • If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

            – Raul Sanchez
            Jan 21 at 17:16











          • hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

            – Bare Feet
            Jan 21 at 17:23











          • If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

            – Raul Sanchez
            Jan 21 at 17:31











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f258604%2fcontroller-redirect-on-jquery-post-request-from-phtml-template%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          What I would do is returning the url to redirect in a JSON object (for example) as response to Ajax call, and then deal with that response in the .phtml



          So...



          public function execute()
          {
          $response = new stdClass();
          $response->url = false;
          // your logic here, where you set the redirect url in $response->url if proceed
          die(json_encode($response));
          }


          And then, in .phtml



          $("#addToCart").click(function(){ 
          var controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>";
          $.post( controllerUrl, function( response ) {
          if (response.url){
          window.location.href = response.url;
          } else {
          // show some error
          }
          });
          });





          share|improve this answer
























          • My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

            – Bare Feet
            Jan 21 at 17:12













          • If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

            – Raul Sanchez
            Jan 21 at 17:16











          • hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

            – Bare Feet
            Jan 21 at 17:23











          • If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

            – Raul Sanchez
            Jan 21 at 17:31
















          1














          What I would do is returning the url to redirect in a JSON object (for example) as response to Ajax call, and then deal with that response in the .phtml



          So...



          public function execute()
          {
          $response = new stdClass();
          $response->url = false;
          // your logic here, where you set the redirect url in $response->url if proceed
          die(json_encode($response));
          }


          And then, in .phtml



          $("#addToCart").click(function(){ 
          var controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>";
          $.post( controllerUrl, function( response ) {
          if (response.url){
          window.location.href = response.url;
          } else {
          // show some error
          }
          });
          });





          share|improve this answer
























          • My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

            – Bare Feet
            Jan 21 at 17:12













          • If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

            – Raul Sanchez
            Jan 21 at 17:16











          • hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

            – Bare Feet
            Jan 21 at 17:23











          • If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

            – Raul Sanchez
            Jan 21 at 17:31














          1












          1








          1







          What I would do is returning the url to redirect in a JSON object (for example) as response to Ajax call, and then deal with that response in the .phtml



          So...



          public function execute()
          {
          $response = new stdClass();
          $response->url = false;
          // your logic here, where you set the redirect url in $response->url if proceed
          die(json_encode($response));
          }


          And then, in .phtml



          $("#addToCart").click(function(){ 
          var controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>";
          $.post( controllerUrl, function( response ) {
          if (response.url){
          window.location.href = response.url;
          } else {
          // show some error
          }
          });
          });





          share|improve this answer













          What I would do is returning the url to redirect in a JSON object (for example) as response to Ajax call, and then deal with that response in the .phtml



          So...



          public function execute()
          {
          $response = new stdClass();
          $response->url = false;
          // your logic here, where you set the redirect url in $response->url if proceed
          die(json_encode($response));
          }


          And then, in .phtml



          $("#addToCart").click(function(){ 
          var controllerUrl = "<?php echo $block->getUrl('batchorder/index/addtocart'); ?>";
          $.post( controllerUrl, function( response ) {
          if (response.url){
          window.location.href = response.url;
          } else {
          // show some error
          }
          });
          });






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 21 at 16:57









          Raul SanchezRaul Sanchez

          2,00531135




          2,00531135













          • My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

            – Bare Feet
            Jan 21 at 17:12













          • If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

            – Raul Sanchez
            Jan 21 at 17:16











          • hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

            – Bare Feet
            Jan 21 at 17:23











          • If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

            – Raul Sanchez
            Jan 21 at 17:31



















          • My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

            – Bare Feet
            Jan 21 at 17:12













          • If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

            – Raul Sanchez
            Jan 21 at 17:16











          • hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

            – Bare Feet
            Jan 21 at 17:23











          • If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

            – Raul Sanchez
            Jan 21 at 17:31

















          My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

          – Bare Feet
          Jan 21 at 17:12







          My problem is that I am showing some error/warning messages and want to display them in the cart rather than the page they are on, would this do the trick of carrying the error messages through to cartt?

          – Bare Feet
          Jan 21 at 17:12















          If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

          – Raul Sanchez
          Jan 21 at 17:16





          If you add your messages to checkout/session in the controller they should appear in checkout/cart after the redirect

          – Raul Sanchez
          Jan 21 at 17:16













          hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

          – Bare Feet
          Jan 21 at 17:23





          hymmm... That would solve all my problems! Any ideas or suggestion how can I achieve that? Link etc? :D

          – Bare Feet
          Jan 21 at 17:23













          If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

          – Raul Sanchez
          Jan 21 at 17:31





          If your controller extends MagentoFrameworkAppActionAction, as I suppose it does, your can add any session message using $this->messageManager, for instance magento.stackexchange.com/a/127689/3566

          – Raul Sanchez
          Jan 21 at 17:31


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f258604%2fcontroller-redirect-on-jquery-post-request-from-phtml-template%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          An IMO inspired problem

          Management

          Has there ever been an instance of an active nuclear power plant within or near a war zone?