我正在使用$location.path
重定向到特定网址。这完全适用于其他浏览器,但在Internet Explorer中它不起作用。
我尝试过:
request.success(function (html) {
if(html['success'] == 1){
$("#couponFrm")[0].reset();
}
$("#spinner").hide();
if(html['success']){
launch("notify", html['msg']);
$location.path("/coupons`enter code here`");
}
else{
launch("error", html['msg']);
}
});