出于某种原因,当我尝试在下面的数据服务成功函数中创建toastr通知时,它们无法正常工作,但是如果我把它们拿出来就是它们..任何想法为什么以及如何解决这个问题?谢谢你的时间。
答案 0 :(得分:1)
Angular 1.6没有成功功能:使用如下:
$http({
url: urlToServer,
method: "POST",
//cache: false,
data: jQuery.param(dataObj),
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
}).then(function (res){
alert("success", "Hoorey", "Verified");
},function (error){
alert("warning", "Oops!", "Could NOT Login");
});