jquery的then方法

网友投稿 683 2022-10-07

jquery的then方法

jquery的then方法

绿地项目中的代码:

$.ajax({ url: ` type: 'post', data: `tenant_id=${tenantId}&grant_type=client_credentials&secret=${secret}&app_id=${appID}`, contentType: "application/x- success: function(data) { return data }, error(err) { console.log(err.responseText) } }).then(function(data) { var HR_token = data; $.ajax({ method: 'GET', url: ` dataType: 'json', contentType: "application/json", beforeSend: function(xhr) { xhr.setRequestHeader("Authorization", "Bearer " + HR_token.access_token); }, success: function(res) { sendListData(3, res.data.todos); }, error: function(err) { console.log(err); } }); })

以下是百度的用法:

$.ajax({ url:"xxxxxx", method:"post", data:id, contentType:"application/json",}).then(function(res){ $.ajax({ url:"", method:"post", data:res.data.roleIds, contentType:"application/json", success:function( data ){ //渲染已选角色下拉框 } })})

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微信小程序开发中怎样实现电商购物车逻辑(微信小程序商城的运作)
下一篇:微信小程序开发中怎样实现图片上传
相关文章

 发表评论

暂时没有评论,来抢沙发吧~