dacatadmin框架,form表单使用tree字段,新增提交时候报错:Array to string conversion {"exception":"[object] (ErrorException(code: 0): Array to string conversion

dacatadmin框架,form表单使用tree字段,新增提交时候报错:Array to string conversion {“exception”:”[object] (ErrorException(code: 0): Array to string conversion

form表单代码如下:

dacatadmin框架,form表单使用tree字段,新增提交时候报错:Array to string conversion {"exception":"[object] (ErrorException(code: 0): Array to string conversion

附言 1  ·  10个月前

尝试过只保留tree提交保存不行,如果屏蔽掉tree结构提交保存成功,可以定位是tree的值有问题

《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。
最佳答案

class CaseMusic extends Model {

//自动设置转换
//protected $casts = [
//    "tree" => "array",
//];

//手动设置
public function setImagesAttribute($val){
    $this->attributes['tree'] = json_encode($val);
}
//手动转换
public function getImagesAttribute($val)
{
    return json_decode($val, true);
}

}

10个月前 评论
讨论数量: 2

这个错误提示不是很清楚了吗。数组转字符串了。saving里把数组转为字符串在提交

10个月前 评论

class CaseMusic extends Model {

//自动设置转换
//protected $casts = [
//    "tree" => "array",
//];

//手动设置
public function setImagesAttribute($val){
    $this->attributes['tree'] = json_encode($val);
}
//手动转换
public function getImagesAttribute($val)
{
    return json_decode($val, true);
}

}

10个月前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!