提交表单注册FOSUserBundle中的错误

时间:2016-04-19 01:24:56

标签: symfony doctrine-orm fosuserbundle

当我在注册时提交表格 FOSUserBundle 时,我有这样的错误:

enter image description here

任何帮助都会被贬低。

1 个答案:

答案 0 :(得分:0)

为你确定一个答案太模糊了。如果您在第77和82行检查NormalizerFormatter.php文件,您可以看到它正在做什么以及出现问题的位置。

NormalizerFormatter.php:

76            $count = 1;
77        foreach ($data as $key => $value) {
78            if ($count++ >= 1000) {
79                $normalized['...'] = 'Over 1000 items, aborting normalization';
80                break;
81            }
82            $normalized[$key] = $this->normalize($value);
83        }