我尝试将我的数据发送到php文件但不起作用。 这是我的ajax文件
var artistIds = new Array();
$(".p16 input:checked").each(function(){
artistIds.push($(this).attr('id'));
});
$.post('/json/crewonly/deleteDataAjax2', { artistIds: artistIds },function(response){
if(response == 'ok')
alert('dolu');
elseif (response == 'error')
alert('bos');
});
这是我的php
public function deleteDataAjax2() {
extract($_POST);
if (isset($artistIds))
$this->sendJSONResponse('ok');
else
$this->sendJSONResponse('error');
}
但是,我在php端的artistIds为null。为什么?