当前位置 : 主页 > 网页制作 > Dojo >

dojo中的xhrPost请求(JSON)

来源:互联网 收集:自由互联 发布时间:2021-06-15
dojo中的xhrPost请求 dojo.xhrPost({ url:"../area.action", content:{ areaCode:areaCode }, handleAs:'json', handle:function(resp){ console.info(resp.items); //返回成功处理 } }); 说明:(1)url:请求路径,可以是action或者

dojo中的xhrPost请求


dojo.xhrPost({

       url:"../area.action",

       content:{

             areaCode:areaCode

       },

       handleAs:'json',

       handle:function(resp){

              console.info(resp.items);

              //返回成功处理

      }

});


说明:(1)url:请求路径,可以是action或者json

          (2)content:传参数,前者是Java传参数,后者是页面参数

          (3)handleAs:请求方式

          (4)handle:成功返回结果后处理情况

网友评论