前段代码如下:
var paramsData = {tagscheck:this.form.tagscheck};
console.log(paramsData)
this.axios.post("http://127.0.0.1/api/v1.info/save",paramsData)
.then(function (response) {
//console.log(response);
});
php代码如下:
$tagscheck=$request->param('tagscheck');
dump($tagscheck);
1、console.log(paramsData)打印如图
2、post提交时的request如图
3、后端获取参数后的打印如图
4、foreach遍历$tagscheck的话就会出错,提示500错误
$tagscheck=$request->param('tagscheck');
dump($tagscheck);
//$tagscheck是数组,但是无法foreach,不知道什么问题
foreach($tagscheck as $value){
dump($value);
}