今天遇到这个错误提示,查了一下解决方案:网上有人说是扩展Input类,我觉得问题根源不在这里,后面查到一个国外解决方案:

<!-- 这样将会引起报错 -->
<input type="text" name="fieldname['foo']" value=""> 

<!-- 这样是正常的. -->
<input type="text" name="fieldname[foo]" value="">

多了一对双引号

source:http://tiffanybbrown.com/2010/07/21/codeigniters-disallowed-key-characters-error-revisited/

相关文章:

  • 2021-07-06
  • 2021-05-23
  • 2021-12-02
  • 2022-12-23
  • 2021-09-18
  • 2021-10-29
  • 2021-11-27
  • 2021-08-01
猜你喜欢
  • 2021-07-08
  • 2021-07-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案