Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表格,其中有一个经理集合,它是一个自动完成的文本字段。
当表单绑定时,它会抛出错误,因为它需要管理器对象。但经理文本字段只包含简单的文本。
if ($request->getMethod() === 'POST') { $Form->bindRequest($request); }
所以我手动查询根据管理器名称访问管理器对象,但是如何$request在绑定之前将其设置为对象request?
$request
request
请参阅Using Data Transformers食谱条目——它完全涵盖了您想要的内容。