简体   繁体   中英

From laravel controller passing value to ajax then get the particular field

how can i get the ID or Name Field then append it to Textbox, Please Correct me if i'm approaching this in the wrong way.

$(document).ready(function(){
    var students = {!! json_encode($students->toArray()) !!};

    //This Part Im Trying to get.
    var name=$(students).val(name);
    var id=$(students).val(id);

    console.log(name);

});

Controller:

 $students=Student::all()->take(5);
 return view('Examples.levels',compact('students'));

image below is the result if i use console.log(students) 在此处输入图片说明

Updated Version

$(document).ready(function(){
    var students = {!! json_encode($students->toArray()) !!};
    students.forEach(function(student) {
  $('.content').append(
  `<input name="name[]" value=`+student.name+`>`
  );
  console.log(student.name)
});
});

Attached imaged result: 在此处输入图片说明

Try this one. it will append with value.

students.forEach(function(student) {
  $('.content').append(
  `<input name="name[]" value="`+student.name+`">`
  );
});

You should iterate over a students array like so:

students.forEach(function(student) {
   console.log(student.name);
   console.log(student.id);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM