前端使用正则表达式从接口地址栏取值并将对应的值展示在页面上

业务场景,APP分享出链接,通过get请求接口方式,展示对应的字段。

需求图:

 

获取某单号


  
  1. var name="";//姓名
  2. var idNo="";//证件号
  3. var applicationNo=getParams("applicationNo");//号码
  4. window.onload = function(){
  5. fetch("https://xxxxx/picc-interface/queryApplicantFiveElements?applicationNo=" + applicationNo)
  6. .then(response => response.json())
  7. .then(res=>{
  8. $("#applicantN").html(res.name);
  9. $("#idN").html(res.idNo);
  10. $("#applicationN").html(res.applicationNo);
  11. })
  12. }

获取浏览器参数


  
  1. function getParams(name) {
  2. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  3. var r = window.location.search.substr(1).match(reg);
  4. if (r != null) return unescape(r[2]);
  5. return "";
  6. }

 

文章来源: sunmenglei.blog.csdn.net,作者:孙叫兽,版权归原作者所有,如需转载,请联系作者。

原文链接:sunmenglei.blog.csdn.net/article/details/113998458

(完)