繁体   English   中英

提交表单 PHP 修改为 JQuery AJAX

[英]Submit Form PHP amend to JQuery AJAX

我希望将以下 php 表单提交转换为 JQuery Ajax 提交。 我之前使用过 Ajax 和一些简单的请求,但我不确定如何从 MySQL 提交和返回以下代码的数据。

下面的代码将用户输入条目提交给返回单列行的 MySql 查询。 While 循环然后查看这些行并触发另一个 mysql 查询,返回每行用户喜欢的数量。

<?php

if(!empty($_POST['Message']))
{
      $userid = session_id();
      $searchStr = get_post($con,'Message');
      $aKeyword = explode(" ", $searchStr);

      $aKeyword = array_filter($aKeyword);

      $stmt = $con->prepare(
          'SELECT m.ID, m.MessageText 
          FROM MessageMain m 
          LEFT OUTER JOIN Likes l on m.ID = l.PostID 
          WHERE MessageText REGEXP ?
          GROUP BY m.ID, m.MessageText ORDER BY count(m.id) desc'
      );

      $regexString = implode('|', $aKeyword);
      $stmt->bind_param('s', $regexString);
      $stmt->execute();
      $result = $stmt->get_result();

       $rowcount=mysqli_num_rows($result);

       echo "<pre> Returned ".  $rowcount . " matches</pre>";

     if(mysqli_num_rows($result) > 0) {
        $row_count=0;
        While($row = $result->fetch_assoc()) {   
            $postid = $row['ID'];
            $row_count++;

                    // Checking user status
                    $status_query = $con->prepare("SELECT COUNT(*) AS type FROM likes WHERE userid = ? AND postid = ?");
                    $status_query->bind_param('ss',$userid,$postid);
                    $status_query->execute();
                    $status_result = $status_query->get_result();
                    $status_row = $status_result->fetch_assoc();
                    $type = $status_row['type'];

                    // Count post total likes
                    $like_query = $con->prepare("SELECT COUNT(*) AS cntLikes FROM likes WHERE postid = ?");
                    $like_query->bind_param('s',$postid);
                    $like_query->execute();
                    $like_result = $like_query->get_result();
                    $like_row = $like_result->fetch_assoc();
                    $total_likes = $like_row['cntLikes'];

?>
                    <div class="post">
                        <div class="post-text">
            <?php

            echo nl2br(htmlentities($row['MessageText'],ENT_COMPAT|ENT_IGNORE, "UTF-8") );

            ?>

             </div>
                        <div class="post-action">

                            <input type="button" value="Like" id="like_<?php echo htmlentities($postid . "_" . $userid); ?>" class="like" style="<?php if($type == 1){ echo "color: #ffa449;"; } ?>" />&nbsp;(<span id="likes_<?php echo $postid . "_" . $userid; ?>"><?php echo htmlentities($total_likes); ?></span>)&nbsp;

                        </div>
                    </div>
        <?php 
                }

    }

}

最简单的方法是重写 PHP 脚本以仅返回数据,以便您可以在 JS 中使用它来构建 HTML。

我的建议是简单地创建一个数组并将所有数据添加到 while 循环中的该数组中,例如:

// Add the array declaration somewhere at the beginning of your script ( outside the while loop )
$likesData = array();

然后在你的 while 循环中:

$likesData[] = array(
  'ID' => $postid,
  'type' => $type,
  'totallikes' => $total_likes
);

然后在你的 while 循环之后:

// Return the array as JSON, die script to ensure no other data gets send after the json response
die( json_encode( $likesData ) );

然后在你的 JS ( jQuery ) 中做这样的事情:

// Do the AJAX request
$.post( "yourscript/url/maybephpfile.php", function( jsonResponse ) {
  // Loop over json response
  for( var key of Object.keys( jsonResponse ) ) {
    $( '.your_existing_element' ).append( `<div class="post"><div class="post-text">${jsonResponse[key].totallikes}</div></div>` );
  }
});

希望这对你有帮助,如果你有任何问题,请告诉我。

单击按钮时,您需要从 ajax 中的表单发送

$.ajax({
  method: "POST",
  url: "some.php",
  data: { message: "message text" }
})
  .done(function( msg ) {
    // process your data back here
    alert( "Data Saved: " + msg );
  });

例子在这里。 https://api.jquery.com/jquery.ajax/ $.post 是ajax 的快捷方式,方法post。

我认为拆分文件而不是将所有文件都放在一个文件中会更好。 form.php -> ajax 请求 -> backend.php -> ajax 检索到的数据返回到 form.php

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM