我使用ajax获取数据并填充选择框。在下面的代码中,我回显ajax.php文件的输出,并接收它。一切正常。但是,正如您可以看到所有html都填充在一个选择框中。我想返回两个单独的选择框的数据,而不是一个。
因此我的问题是,如何从ajax.php中分别发送两种不同类型的数据,如何在成功函数中接收它。
$.ajax({
type: "POST",
url: "../ajax.php",
data: {name: 'select1', id: id},
cache: false,
success: function(html){
$(".select1").html(html);
}
});
Ajax.php只回显数据:
//data for select1
foreach($rows as $row){
echo '<option>x</option>';
}
//I want to add another one for select2
foreach($rows1 as $row){
echo '<option>y</option>';
}
die();
并希望收到类似的内容:
success: function(html){
$(".select1").html(data1);
$(".select2").html(data2);
}
编辑:我正在使用ajax获取数据,因为我正在使用相关选择框并从数据库中获取数据。因此,通过单击选择1,它从数据库中获取选择2的数据,这就是我这样做的原因。
答案 0 :(得分:2)
你可以在你的Ajax.php中做一些这样的事情
//select1
$data['html1'] = NULL;
foreach($rows as $row){
$data['html1'] .= '<option>x</option>';
}
//select2
$data['html2'] = NULL;
foreach($rows1 as $row){
$data['html1'] .= '<option>y</option>';
}
$resonse = json_encode($data);
echo $response;
//JQUERY MAKE SURE THAT ITS OF TYPE JSON.
success: function(response){
$(".select1").html(response.html1);
$(".select2").html(response.html2);
}
答案 1 :(得分:1)
使用两个不同的数组索引构造two diffrent select options in php
,如此
//select1
$data['first'] = '<option>first</option>'; // loop for more data
//select2
$data['second'] = '<option>second</option>';
回复json_encode($data);
并成功收到并相应地显示。
success: function(data){
var data = JSON.parse(data);
$(".select1").html(data.first);
$(".select2").html(data.second);
}
答案 2 :(得分:1)
foreach($rows as $row){
$selects['select1'] = '<option>x</option>';
}
foreach($rows1 as $row){
$selects['select2'] = '<option>y</option>';
}
print_r(json_encode($selects));
die();
$.ajax({
type: "POST",
url: "../ajax.php",
success: function(data){
$(".select1").html(data.select1);
$(".select2").html(data.select2);
}
});
答案 3 :(得分:1)
要分离返回的数据,您将需要使用不同的格式来返回数据 - 此时,它返回的所有内容都是
<option>x</option>
<option>x</option>
<option>x</option>
<option>y</option>
<option>y</option>
<option>y</option>
,浏览器无法分开。如果将其编码为JSON,则可以返回
{
select1: [
"<option>x</option>",
"<option>x</option>",
"<option>x</option>"
]
select2:
"<option>y</option>",
"<option>y</option>",
"<option>y</option>",
]
}
要做到这一点,你需要使用这个php:
$select1 = array();
foreach($rows1 as $row){
array_push($select1, $row);
}
$select2 = array();
foreach($rows2 as $row){
array_push($select2, $row);
}
echo json_encode(array('select1' => $select1, 'select2' => $select2), JSON_FORCE_OBJECT);
和这个javascript:
success: function(data){
var decoded = JSON.parse(data);
for (var l = 0; l < decoded.select1.length; l++){
$(".select1").append(decoded.select1[l]);
}
for (var l = 0; l < decoded.select2.length; l++){
$(".select2").append(decoded.select2[l]);
}
}
答案 4 :(得分:1)
var json_post = [
{ "id" : "1", "name" : "test1" },
{ "id" : "2", "name" : "test2" }
];
$.ajax({
type: "POST",
url: "../ajax.php",
data: json_post,
cache: false,
dataType: 'json',
success: function(data){
var json = $.parseJSON(data);
$.each(
json,
function(i, val){
$(".select"+val.id).html(val.name)
}
);
}
});
您可以使用json在上面的行中执行某些操作。 (我没有测试过。)
答案 5 :(得分:1)
//select1
$data = "";
foreach($rows as $row){
$data .= '<option>x</option>';
}
$data .= "^^^"; // you can use any separator
//select2
foreach($rows1 as $row){
$data .= '<option>y</option>';
}
echo $data;
success: function(response){
var options = response.split("^^^");
$(".select1").html(options[0]);
$(".select2").html(options[1]);
}