所需截取掉字符串&u0026Lang=Simplified:
POST接口后成功返回以下内容,但是需要截掉&u0026Lang=Simplified
System.out.println(result)打印出以下:
{ "success" : 1, "msg" : "登录成功" , "info" : {"Url":"https://es.avia-gaming.com/handler/fastlogin?key=e55d750994124de6a97ea9f04912ba6e&u0026Lang=Simplified" } }
可以用replace,不知道你这是什么语言,应该有替换接口吧,可以把&u0026Lang=Simplified替换为''
// Javascript截取可以吗? // 接口返回数据 let result = { "success" : 1, "msg" : "登录成功" , "info" : {"Url":"https://es.avia-gaming.com/handler/fastlogin?key=e55d750994124de6a97ea9f04912ba6e&u0026Lang=Simplified" } }; //截取字符串函数:Fn(obj); //参数obj:接口返回JSON function Fn(obj){ let oUrl = obj.info.Url; if(!obj) return; console.log(oUrl.split('&')[0]); }; Fn(result); //https://es.avia-gaming.com/handler/fastlogin?key=e55d750994124de6a97ea9f04912ba6e
console.log() ; 改为: return
– Coca-code 6年前