JSON

ext前台接收action传过来的json数据示例

字号+ 作者:H5之家 来源:H5之家 2015-11-24 10:57 我要评论( )

当前位置 : 首页 网络编程 ext前台接收action传过来的json数据示例 这篇文章以示例的方式为大家介绍了ext前台接收action传过来的json数据,需要的朋友可以参考下。 ext前台接收action传过来的json数据 代码如下: ext.ajax.request({ method:'post',//请求方式

当前位置 : 首页> 网络编程

ext前台接收action传过来的json数据示例

这篇文章以示例的方式为大家介绍了ext前台接收action传过来的json数据,需要的朋友可以参考下。

ext前台接收action传过来的json数据

代码如下:

ext.ajax.request({

method:'post',//请求方式

params:{dagl_code:dagl_code},

url:lcwpath+/daxt/lcgl.shtml?method=getjgbycode,//请求的url地址

success:function(response,opts){

if(response.responsetext!='{}'){

alert(response.responsetext);

<spanstyle=background-color:#ffcc99>//第一种方法

vardagl_jg=ext.util.json.decode(response.responsetext).dagl_jg;

//第二种方法

varjson=eval((+re.responsetext+));

vardagl_jg=json.dagl_jg;

</span>

varorg_mc=ext.util.json.decode(response.responsetext).org_mc;

varlccode=ext.util.json.decode(response.responsetext).lccode;

varlcname=ext.util.json.decode(response.responsetext).lcname;

ext.getcmp(jgs).combohidden.setvalue(dagl_jg);

ext.getcmp('jgs').setvalue(org_mc);

ext.getcmp('dagl_jg').setvalue(dagl_jg);

ext.getcmp('sslc').setvalue(lccode);

ext.getcmp('sslc').setrawvalue(lcname);

vardagl_jg=ext.getcmp('jgs').combohidden.getvalue();

lcstore.proxy=newext.data.httpproxy({url:lcwpath+'/daxt/lcgl.shtml?method=getdaxx&dagl_type=l&dagl_jg='+dagl_jg});

lcstore.load();

ext.getcmp('lcbh').setvalue('');

}else{//值没有,清空信息

ext.messagebox.show({

title:'提示',

msg:config.string.notnumbermsg_or_numberloseefficacy,

minwidth:270,

icon:ext.messagebox.warning,

buttons:{ok:关闭},

fn:function(e){ext.messagebox.hide();},

closable:true

});

ext.getcmp(jgs).setvalue();

ext.getcmp(lcbh).setvalue();

}

},

failure:function(response,opts){

ext.messagebox.show({

title:'系统提示',

msg:'系统出现非预期异常',

minwidth:270,

icon:ext.messagebox.warning,

buttons:{ok:关闭},

fn:function(e){ext.messagebox.hide();},

closable:true

});

}

});

更多网络编程信息请查看: 网络编程

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • springmvc 接收json对象

    springmvc 接收json对象

    2016-02-05 16:01

  • struts2+ajax+json action向页面返回int型数据,页面报异常org.a

    struts2+ajax+json action向页面返回int型数据,页面报异常org.a

    2016-01-31 15:35

  • Spring MVC @RequestBody接收JSON报HTTP 415/400问题的解决

    Spring MVC @RequestBody接收JSON报HTTP 415/400问题的解决

    2015-10-14 13:24

  • JSON用法之将PHP数组转JS数组,JS如何接收PHP数组

    JSON用法之将PHP数组转JS数组,JS如何接收PHP数组

    2015-10-10 10:04

网友点评