二级联动 ajax 申请处理页面成功 但返回null 求解
html$(function(){$("#aId").change(function(){varaId=$("#aId").val();$.ajax({type:"pos...
html
$(function(){
$("#aId").change(function(){
var aId = $("#aId").val();
$.ajax({
type:"post",
async:false,
url:"__URL__/liandong",
data:"aId="+aId,
dataType:"json",
success:function(data){
alert(data);
}
});
});
})
</script>
php
$aId=$_POST['aId'];
$rs = $this->tvname->where("aId=".$aId)->select();
file_put_contents('a.txt', json_encode($rs));
return json_encode($rs);
用 a.txt接收到了 需要的数据, 但html页面弹出的是null 展开
$(function(){
$("#aId").change(function(){
var aId = $("#aId").val();
$.ajax({
type:"post",
async:false,
url:"__URL__/liandong",
data:"aId="+aId,
dataType:"json",
success:function(data){
alert(data);
}
});
});
})
</script>
php
$aId=$_POST['aId'];
$rs = $this->tvname->where("aId=".$aId)->select();
file_put_contents('a.txt', json_encode($rs));
return json_encode($rs);
用 a.txt接收到了 需要的数据, 但html页面弹出的是null 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询