JS -- 如何由一个页面跳转到另一个页面并传递参数

跳转方法{
	var url ="/acl_**_topo/pages/rootcause/rootcauseMgmt.jsp?topoId=" + topoMapId;
   	top.navigatorTop.jumpTo({name:'根源告警配置',url:url});
   });
}
<%
	String topoId = request.getParameter("topoId");
%>
<script type="text/javascript">
	var topoId= "<%=topoId%>";
</script>

在相关 js 中可以直接使用 topoId,但是不能在 beforeMount 中使用(此时 topoId 值为 null),但可以在 mounted 方法中使用

你可能感兴趣的:(JS,传参,js)