gpt4 book ai didi

javascript - 在ajax中火回两次成功

转载 作者:行者123 更新时间:2023-12-01 01:49:19 25 4
gpt4 key购买 nike

我想在ajax请求后分离结果

<input type="text" class="form-control" name="userno" id='stud_id' readonly > 
<input type="text"name="studentname" id='studentname' readonly >
<input type='submit' name='stud' onclick='showstudent_info()'>

function showstudent_info(){
var studid = $('#studid').val();
console.log(studid);
if(studid){
$.ajax({
type:'POST',
url:'parentinfo.php',
data: 'studid='+studid,
success:function(html){
var infoid = html
$('#stud_id').val(info);
var studname = html
$('#studentname').val(studname);
}
});
}
}

这是我的parentinfo.php页面

parentinfo.php
$stud_id = $_POST['studid'];
$qry = "Select studtbl.stud_id,concat(studtbl.fname,' ',
substring(studtbl.mname, 1,1),'. ',studtbl.lname) as Name from studtbl where
stud_id = $stud_id";
$result = mysqli_query($conn, $qry);
while($row = mysqli_fetch_array($result))
{
extract($row);
$info = $row['stud_id'];
$studname = $row['Name'];
}
echo $info;
echo $studname;

我的问题是 infoid 和 Studname 的值被连接起来,例如(1Albert Einstein)

最佳答案

将其作为 JSON 发送,这样您就可以在服务器端将其分解,使其作为 javascript 对象客户端可读,而不是解析从服务器发送的字符串

在 php 中会是这样的:

$outputArray = array(
'id'=> $idVariable,
'name'=> $nameVariable
);

echo json_encode($outputArray);

然后在js中将dataType:'json'添加到ajax选项中,成功回调将类似于:

success:function(responseObject){
var infoid = responseObject.id;
$('#stud_id').val(infoid );
var studname = responseObject.name;
$('#studentname').val(studname);
}

关于javascript - 在ajax中火回两次成功,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51681484/

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