业务场景,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 "";}