Anyody knows how to get array of post inputs from ajax to CodeIgniter?
任何奥迪都知道如何从ajax获取post输入的数组到CodeIgniter?
E.X.
E.X.
<input name="city[]" value="xxx">
<input name="city[]" value="yyy">
2 个解决方案
#1
1
$this->input->post("city");
#2
2
Here is a similar question and solution for multiple fields posting using jQuery Ajax.
对于使用jQuery Ajax发布的多个字段,这里有一个类似的问题和解决方案。
How to pass multiple checkboxes using jQuery ajax post
如何使用jQuery ajax post传递多个复选框
Hope this helps you. Thanks!!
希望这能帮助你。谢谢! !
#1
1
$this->input->post("city");
#2
2
Here is a similar question and solution for multiple fields posting using jQuery Ajax.
对于使用jQuery Ajax发布的多个字段,这里有一个类似的问题和解决方案。
How to pass multiple checkboxes using jQuery ajax post
如何使用jQuery ajax post传递多个复选框
Hope this helps you. Thanks!!
希望这能帮助你。谢谢! !