我正在使用带有laravel的vue。 我试图保存对象数组但不能这样做,虽然我能够保存单个对象。 这是我的代码 App.vue p>
//不工作
saveData(){
this.axios.post('/ addperson',** this.rows * *)。then((response)=> {
console.log(“WOW”);
})
}
// working
saveData(){
this.axios.post ('/ addperson',** this.rows [0] **)。then((response)=> {
console.log(“WOW”);
})
}
code > pre>
这是控制器代码,当我传递数组时,我收到错误。 p>
<?php
namespace App \ Http \ Controllers;
use Illuminate \ Http \ Request;
use App \ OrderPerson;
class PersonController扩展Controller
{
公共函数create(Request $ request){
$ person = new Person ([
'name'=> $ request-> get('name'),
'age'=> $ request-> get('age'),
'user_id'=> $ request-> get('user_id')''
));
$ person-> save();
返回响应() - > json('成功添加');
}
}
code> pre>
任何正文都可以帮我保存数组吗? p>
div>