// 一、先配置页面
{
	"path": "pages/webview/webview",
	"style": {
		"navigationBarTitleText": ""
	}
}
// 二、编写页面
<template>
  <web-view :src="src" />
</template>

<script>
export default {
  data() {
    return {
      src: "",
      title: "",
    };
  },
  onLoad(option) {
    this.src = decodeURIComponent(option.src);
    this.title = option.title;
    uni.setNavigationBarTitle({ title: this.title });
  },
};
</script>
//三 使用
//src2 就是要跳转的链接
uni.navigateTo({url: `/pages/webview/webview?src=${src2}`});

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐