2

我正在将 Twitter Bootstrap Typeahead 用于自动完成字段。

最终状态目标:用户首先在字段 1 中输入详细信息。当他们在字段 2 中输入详细信息时,ajax 在将查询写入 PHP 文件时传递查询,该文件根据也输入字段 1 的内容查询数据库。

如何将来自字段 2 的查询和字段 1 的内容传递给 PHP 文件并访问它们。

这是我到目前为止所拥有的:

HTML 文件

<div class="field1">
    <input type="text" id="field1" data-provide="typeahead" name="field1">
</div>
<div class="field2">
    <input type="text" id="field2" data-provide="typeahead">
</div>

<script src="js/jquery-1.9.1.min.js"></script>
    <script src="js/bootstrap.js"></script>
    <script>
$(function() {
            $("#field2").typeahead({
                source: function(query, process) {
        var textVal=$("#field1").val();
                    $.ajax({
                        url: 'field2.php',
                        type: 'POST',
                        data: 'query=' + query,
                        dataType: 'JSON',
                        async: true,
                        success: function(data) {
                            process(data);
            console.log(textVal);
                        }
                    });
                }
            });
        });
    </script>

PHP文件:

if (isset($_POST['query'])) {
$db_server = mysql_connect("localhost", "root", "root");
mysql_select_db("db_test");

$query = $_POST['query'];
$other = '**This needs to be field 1**';

$sql = mysql_query("SELECT * FROM table WHERE row1 LIKE '%{$query}%' AND row2 = '$other'");
$array = array();

while ($row = mysql_fetch_assoc($sql)) {
    $array[] = $row['row1'];
}

echo json_encode($array);}

目前,查询部分完美运行并返回结果(控制台也显示来自'Field1'的值。只需将该值同时获取到php文件中!

任何帮助都会很棒

4

2 回答 2

10

如果我理解正确,您希望将字段 1 和 2 的值都解析为同一个 AJAX 调用。这就是你的做法。

<script>
$(function() {
  $("#field2").typeahead({
    source: function(query, process) {
      var textVal=$("#field1").val();
      $.ajax({
        url: 'field2.php',
        type: 'POST',
        data: 'query=' + query + '&field1=' + textVal,
        dataType: 'JSON',
        async: true,
        success: function(data) {
          process(data);
          console.log(textVal);
        }
      });
    }
  });
});
</script>

现在你只需在你的 PHP 文件中创建另一个 $_POST['field1'] 。

于 2013-03-11T03:12:40.403 回答
0
var userQuery = $('#ID of query input element').val(); 
var field1 = $('#ID of input 1 element').val();
$.ajax({
type: "POST",
url: '',
data: {query: QueryVariable, input1: input1variable},
success: function(data) {
        // code within this block
}, 
error: function() {
    alert('System Error! Please try again.');
},
complete: function() {
    console.log('completed')
}

}); // ***END $.ajax 调用

于 2013-03-11T03:20:14.450 回答