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 に人物の名前のみが含まれていると仮定します。(ジョン、ジェームス、スミス)
関数チャットで配列からすべての値を取得できるようにしたい。
どうすればそれができますか?
編集:
この関数 (codeigniter) で JSON エンコードされた配列から値を取得する必要があります。
public function chat()
{
//code to retrieve values
$this->load->view('chat');
}