检查ajax回调是否为空

时间:2014-05-13 07:52:07

标签: javascript jquery ajax

        $http({
            url: "php/add.php",
            method: "POST",
            data: {
                'uId': this.uId,
            },
            headers: {
                'Content-Type': 'application/x-www-form-urlencoded'
            }
        }).success(function (data, status, headers, config) {

            if (data == "") {}else {
                alert('not empty');

            }

        });

我在chrome控制台中检查了我的网络选项卡,没有回音,但警报仍然弹出。为什么呢?

0 个答案:

没有答案