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.
我正在尝试使用 symfony 2 API 在帖子请求中获取一些 HTML 代码。
例如,当我发布类似“<p> hello</p>”之类的内容时
我进入了我的请求操作处理程序(使用 $request->request->get(X))一个转义字符串 => "p hello /p"
有没有办法在动作处理程序中获取原始数据?
$request->request->get(X) 不逃避价值观。要查看发布的数据,请使用Profiler。您的数据被其他东西转义了。
$request->request->get(X)