OctoberCMS无法保存Repeater字段:Unexpected type of array when attempting to save attribute
错误提示:
Unexcepted type of array, should attribute "FidleName" be jsonable?
出现这个错误是因为repeater
字段需要做json格式化处理
,只需要在plugins
下找到对应的/plugins/path/to/models/name.php
文件
添加这一行即可解决
protected $jsonable = ['fieldname'];