我有一个 PHP 函数,如果结果是,它会给出一个警报响应> 0
但是如果结果是,我会收到一个空警报0
我怎样才能阻止这个?
function urlCheck()
{
$website_id = $this->input->post('website_id');
$post_title = $this->input->post('post_title');
$urlCheck = $this->page_model->pageURLCheck($post_title, $moviesparx_website_id);
if($urlCheck > 0)
{
echo "This page name already exists";
}
}
jQuery 阿贾克斯:
$.ajax({
url:url,
data:data ,
type: 'POST',
success: function (resp) {
alert(resp);
},
error: function (resp) {
console.log(data);
}
});