我试图在我的Laravel应用程序中添加一项功能,允许用户保存Google / facebook / hotgar像素代码(javascript代码)。
用户有一个输入TAG的表单,他可以过去是像素。
现在,当我提交表单并尝试处理控制器中的corm数据时...... 包含javascript数据的输入是空的
何时
<input type="text" class="conversion-code" name="poptinConversionCode[]" value="<script type='text/javascript'></script>"></input>
<input type="text" class="conversion-code" name="poptinConversionCode[]" value='test test'></input>
控制器中的
[poptinConversionCode] => Array
(
[0] =>
[1] => test test
)
为什么?
我怎样才能将javascript发送到我的控制器?
答案 0 :(得分:0)
如果在浏览器中观察var转储,则脚本标记的内容为空是正常的。
尝试查看页面来源,看看是否找到了要搜索的内容。
在Laravel中,默认情况下没有输入转换,除了在5.4中修剪和emtpy字符串为空。