eolinker返回值正则处理后设置为全局变量

 

特别注意:需要使用全局变量前务必阅读本链接https://www.cnblogs.com/becks/p/13713278.html

 

如下图,返回值content内,需要取出验证码后面的数字

 

 预处理,响应预处理输入下面代码,如此,即把数字取出来赋值给“Number”,且把Number定义为全局变量

 

 

response=JSON.parse(response);
var Content =response["Data"]["DataList"][0]["Content"];
env.globalParams["Number"]=Content.replace(/[^0-9]/ig,"");

第三行是正则取出数字

 

posted @ 2020-07-19 17:03  小贝书屋  阅读(381)  评论(0编辑  收藏  举报