angularjs怎么通过ajax上传文件
3 回答
30秒到达战场
TA贡献1828条经验 获得超6个赞
jQuery.ajax是异步方法。
你需要在dataBack方法中再传入一个回调函数(callback)来作为异步执行完毕之后的调用方法。
例如:
dataBack: function dataBack ( feed, callback ) {
...
success: function success ( response ) {
callback( response );
},
...
慕标5832272
TA贡献1966条经验 获得超4个赞
$.ajax({
type : "post",
url : ".do",
dataType : "json",
data : {
code : "admin",
token : "1"
},
success : function(result) {
window.location.href= "home.html";
},
error : function(data) {
window.location.href= "login.html";
}
});
- 3 回答
- 0 关注
- 788 浏览
添加回答
举报
0/150
提交
取消