将打包后的vue文件放在hybrid目录下(如下图)
在uniapp中使用webview引入并向vue项目的userinfo页面传参如何实现?vue项目的跟页面是home
src="/hybrid/html/userinfo?name=1&age=12" 或者 src="/hybrid/html/index.html?name=1&age=12"
BoredApe - 有问题就会有答案。
如果引入本地的vue项目可以参考《网赚游戏》模板项目中,首页使用web-view
的方式。
<web-view v-if="platform=='android'" :src="'/hybrid/html/plugins/h5/index.html'" class="webview" ref="iframe"></web-view>
<web-view v-if="platform=='ios'" :src="'http://localhost:13131/_www/hybrid/html/plugins/h5/index.html'" class="webview" ></web-view>
iOS
在manifest.json
中开启miniserve
,安卓不需要特殊配置
"capabilities" : {
"plists" : {
"DCloudConfig" : {
"miniServer" : true
}
}
}
呵呵857 (作者)
如果要传参怎么传,vue项目有自己的路由首页是/home 用户信息页是/userinfo 现在要向/userinfo页面传参怎么传呢
2022-12-13 09:25