前端使用正则表达式从接口地址栏取值并将对应的值展示在页面上
【摘要】
业务场景,APP分享出链接,通过get请求接口方式,展示对应的字段。
需求图:
获取某单号
var name="";//姓名 var idNo="";//证件号 var applicationNo=getParams("applicationNo");//号码 window.onload = function(){ fetch("https:...
业务场景,APP分享出链接,通过get请求接口方式,展示对应的字段。
需求图:
获取某单号
-
var name="";//姓名
-
var idNo="";//证件号
-
var applicationNo=getParams("applicationNo");//号码
-
window.onload = function(){
-
fetch("https://xxxxx/picc-interface/queryApplicantFiveElements?applicationNo=" + applicationNo)
-
.then(response => response.json())
-
.then(res=>{
-
$("#applicantN").html(res.name);
-
$("#idN").html(res.idNo);
-
$("#applicationN").html(res.applicationNo);
-
})
-
}
获取浏览器参数
-
function getParams(name) {
-
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
-
var r = window.location.search.substr(1).match(reg);
-
if (r != null) return unescape(r[2]);
-
return "";
-
}
文章来源: sunmenglei.blog.csdn.net,作者:孙叫兽,版权归原作者所有,如需转载,请联系作者。
原文链接:sunmenglei.blog.csdn.net/article/details/113998458
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)