从控制器发送POST动作,按照动作

Is it possible to send a form submission from a controller, but follow the action in the browser?

I know you cant redirect post, but is there a way to send the submission in the controller and it continues like a normal POST?

e.g.

function paymentHandler(){
     // validation data
     // save data
     redirect/send POST with data to paymentgatewy which is external
    // gateway page should be what the user then sees
}

You can achieve this by doing form submission with javascript. Just render your page with form that is filled with needed data and post it to the payment gateway by JavaScript.