尝试使用ajax表单,而不是表单动作(解决)。

问题描述 投票:0回答:1

我想改善我网站的用户体验。所以我尝试将表单动作改为ajax,我已经尝试了一些教程,但我还是卡住了。

我正在使用一个php论坛程序源码调用 !Discuz 而且是中国的。下面是我现在的编码。

在html中。

<form method="post" id="jnfarm_pop" action="plugin.php?id=cc&do=shop">
<input type="hidden" name="shopsubmit" value="yes">
<!--first item-->
<input type="checkbox" name="jsid[1]" value="1">
<input type="number" style="width:3em;" name="qty[1]">
<!--second item-->
<input type="checkbox" name="jsid[2]" value="1">
<input type="number" style="width:3em;" name="qty[2]">
...continue 50 item
<button type="submit" class="layui-btn layui-btn-fluid" name="submitbutn">submit</button>
</form>

PHP,文件名 plugin.php

<?php
if($_GET['id'] == 'cc'){
  if(submitcheck('shopsubmit')){ //core function in !Discuz 
    for($x=1;$x<=50;$x++){
      if($_GET['jsid'][$x] == '1'){
        $qty[$x] = intval($_GET['qty'][$x]);
        //process....
      }
    }
    showmessage('message here','redirectlink');//this is !Discuz program function and it is fine.
  }
}
?>

上述脚本在使用 form action,并重定向到我的输出页面。如果我想改成ajax,我如何调整下面的源代码?

<script type="text/javascript">
        function login() {
            $.ajax({
                type: "POST",
                dataType: "json",//? is it can use json? since my form data can get as array
                url: "plugin.php?id=cc&do=shop" ,//url
                data: $('#jnfarm_pop').serialize(),
                success: function (result) {
                    console.log(result);
                    if (result.resultCode == 200) {
                        alert("SUCCESS");
                    }
                    ;
                },
                error : function() {
                    alert("ERROR");
                }
            });
        }
</script>
<form method="post" id="jnfarm_pop" action="plugin.php?id=cc&do=shop">
<input type="hidden" name="shopsubmit" value="yes">
<!--first item-->
<input type="checkbox" name="jsid[1]" value="1">
<input type="number" style="width:3em;" name="qty[1]">
<!--second item-->
<input type="checkbox" name="jsid[2]" value="1">
<input type="number" style="width:3em;" name="qty[2]">
...continue 50 item
<button type="submit" class="layui-btn layui-btn-fluid" name="submitbutn" onclick="login()">submit</button>
</form>

又是否要调整 plugin.php 源码?

更新了,下面是我的工作,谢谢fayis003。html 更改 <script></script>

$.get('plugin.php?id=cc&do=shop', $('#jnfarm_pop').serialize(), result => {
   //alert('success');
   console.log(result); // check the result in console and if you can see it as a JS object you don't need to parse
   result = JSON.parse(result); // Parse is required if you return the result as plain text otherwise you can omit this step in case you are returning the result as content type json
   alert(result.final);//alert message here
   location.href = result.link;// if you need to get redirected

}).fail(result => {
   alert('fail');
});

PHP

<?php
if($_GET['id'] == 'cc'){
  if(submitcheck('shopsubmit')){ //core function in !Discuz 
    for($x=1;$x<=50;$x++){
      if($_GET['jsid'][$x] == '1'){
        $qty[$x] = intval($_GET['qty'][$x]);
        //process....
      }
    }
    $final = 'message here';
    echo json_encode(['final' => $final]);
  }
}
?>
php ajax ajaxform
1个回答
1
投票

你不能像同步请求那样,在ajax请求中使用服务器端代码直接启动浏览器重定向,相反,你必须返回一个你想被重定向到的URL,然后做一些事情,如 location.href = result.link 在结果回调中使用。

对于ajax请求,最简单的选项是使用以下方式。

$.get('plugin.php?id=cc&do=shop', $('#jnfarm_pop').serialize(), result => {
   //alert('success');
   console.log(result); // check the result in console and if you can see it as a JS object you don't need to parse
   result = JSON.parse(result); // Parse is required if you return the result as plain text otherwise you can omit this step in case you are returning the result as content type json
   let final = result.final;
   location.href = result.link;// if you need to get redirected

}).fail(result => {
   alert('fail');
});

现在,在服务器端代码中,不是从PHP中创建一个重定向,而是返回类似这样的内容

return json_encode(['link' => 'somlink']);

而不是像往常一样只返回成功信息。

© www.soinside.com 2019 - 2024. All rights reserved.