gpt4 book ai didi

jquery - 我如何使用ajax将多个数据从 Controller 发送到页面html

转载 作者:行者123 更新时间:2023-11-29 03:16:01 25 4
gpt4 key购买 nike

在我的页面中,我使用ajax从数据库获取数据,所以在我的 Controller 中,当我将它们发送到页面时,我检索了两个数据,我只得到一个数据

这是我用过的ajax方法

$.ajax({
type:'get',
url:'{!!URL::to('gestion_commandes/create/gencodesol1')!!}',
data:{'id':type, 'id':code},
dataType:'json',
success:function(data){
console.log('success');
console.log(data);
console.log(data.nbrdebut);
//console.log(data.type);

/* var codesol=data+data.nombre;
for(y=1;y<=nbrrowsol;y++ ){
var somme=codesol+y;
$('#codesol'+y).val(somme);
console.log(somme);
}*/
},
error:function(){

}
});

这是我在 Controller 中的功能

 public function findnaturesol1(Request $request)
{
$data=Commande::select('nombre')->where('code', 'LIKE', '%'.$request->id.'%')->count();
if($data!=0){
//$data1=Commande::select('select code from commandes ')->where('code','LIKE', '%'.$request->id.'%')->count();

// $data=Matrice::select('nbrdebut')->where('type',$request->id)->first();
// $data=$vide1+$data2;
// echo '$data2->$nbrdebut';
return response()->json($data);
}
/*else{
$data=DB::table('commandes')-insertGetId(['code' => 'first']);
}*/


}

最佳答案

这是我的代码抱歉我忘了评论标记

public function findnaturesol1(Request $request)
{
$data=Commande::select('nombre')->where('code', 'LIKE', '%'.$request->id.'%')->count();
if($data!=0){
//$data1=Commande::select('select code from commandes ')->where('code','LIKE', '%'.$request->id.'%')->count();

$data=Matrice::select('nbrdebut')->where('type',$request->id)->first();
// $data=$vide1+$data2;
// echo '$data2->$nbrdebut';
return response()->json($data);
}
/*else{
$data=DB::table('commandes')-insertGetId(['code' => 'first']);
}*/


}

关于jquery - 我如何使用ajax将多个数据从 Controller 发送到页面html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56194576/

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