gpt4 book ai didi

php - 在 php/mysql 不工作的情况下使用 JQuery 自动完成

转载 作者:行者123 更新时间:2023-11-30 21:55:19 26 4
gpt4 key购买 nike

我正在尝试使用被标记为有效的代码,但我没有得到任何结果,它只是空的。注意:如果单独运行,MySQL 确实会返回结果,所以它不是 sql 的东西。有什么建议吗?

HTML:

<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

Name: <input id="hint" />

<script type="text/javascript">

$("#hint").autocomplete({
source: function (request, response) {
$.ajax({
url: "getMedicineNames.php",
dataType: "jsonp",
data: {
name: request
},
success: function (data) {
response(data);
}
});
},
minLength: 3
});

</script>
</body>

PHP:

require 'connect.inc.php';
$mysql = mysqli_connect("$db_host", "$db_username", "$db_pass", "$db_name");
$name = $_POST['name'];
if ($name != "") {

$sql = "SELECT MedicineName FROM medicinetypes WHERE MedicineNAme LIKE '%$name%'";
echo json_encode(mysqli_fetch_all(mysqli_query($mysql, $sql), MYSQLI_ASSOC));
}

最佳答案

请添加数据类型:“json”,并输入:“GET”。

如果不起作用,请添加您的 JSON 响应的屏幕截图。

关于php - 在 php/mysql 不工作的情况下使用 JQuery 自动完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45436149/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com