$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控制台中检查了我的网络选项卡,没有回音,但警报仍然弹出。为什么呢?