$.ajax({
async: false,
url:’<?php echo base_url(‘abc/demo/sample_foo’); ?>’,
success: function(result){
if(result.responseText == true)
alert(“random text”);
else
alert(“some_other_random_text”);
}
});
在演示控制器函数中,sample_foo() 仅返回 true 或 false 值,但是当我发出警报时,它显示“未定义”我该怎么做才能检索 true 和 false 值?