@locals/ionic-webview
v0.2.34
Published
ionic webview
Downloads
7
Readme
ionic webview
使用
import { Plugin } from "@capacitor/core"
Plugin.IonicWebView.open({ url: "https://m.localhome.cn" })
方法
open
打开网页
close
关闭 webview
postMessage
向 webview 发送消息
// 向 webview 发送 data 的值
Plugin.IonicWebView.postMessage({ data: "xxx" })
clearDataStore
清空 webview 的缓存数据
setNavigationBarHidden
interface IOption {
// 是否隐藏导航栏
hidden: boolean
// 返回按钮文字
backButtonTitle: string
// 标题文字
title: string
}
Plugin.IonicWebView.setNavigationBarHidden(data: IOption)