我有以下代码将数组发送到 codeigniter 中的函数 /chat
$(document).ready(function () {
$('#submit').live('click', function (eve) {
eve.preventDefault();
$.ajax({
url: "http://localhost/fq/index.php/splash/chat/",
type: 'JSON',
data: a,
success: function (html) {
alert(html);
}
});
});
让我们假设数组 a 只包含人名。(约翰、詹姆斯、史密斯)
我希望能够从函数 chat 中的数组中检索所有值。
怎么做到呢?
编辑:
我需要从这个函数(codeigniter)中的 JSON 编码数组中检索值
public function chat()
{
//code to retrieve values
$this->load->view('chat');
}