时间:2021-05-28
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);
<span style="BACKGROUND-COLOR: #ffcc99">//第一种方法
var dagl_jg = Ext.util.JSON.decode(response.responseText).dagl_jg;
//第二种方法
var json = eval("(" + re.responseText + ")");
var dagl_jg= json.dagl_jg;
</span>
var org_mc = Ext.util.JSON.decode(response.responseText).org_mc;
var lccode = Ext.util.JSON.decode(response.responseText).lccode;
var lcname = 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);
var dagl_jg = Ext.getCmp('jgs').comboHidden.getValue();
lcStore.proxy = new Ext.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
});
}
});
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
最近使用ajax接收springmvc传过来的json数据时总是出现parseerror的错误,错误源码如下:前端:$.ajax({type:'POST',ur
在弄数据解析这块,浪费了很长的时间,最开始一直觉得传过来用对象接收的,类型是json,往那个方式去想了。搞了很久。后来看了别人写的才发觉,真是很简单,感谢htt
当使用Python的flask框架来开发网站后台,解析前端Post来的数据,通常都会使用request.form来获取前端传过来的数据,但是如果传过来的数据比较
ThinkPHP实现批量删除数据原理很简单,只需在模板页面里面写上这样传过来就是一个数组,action的删除函数del()如下:/****删除函数支持删除多条和
我就废话不多说了,还是直接看代码吧!#coding:utf8#在开发过程中,要对前端传过来的数据进行验证,防止sql注入攻击,其中的一个方案就是过滤用户传过来的