uniapp 获取当前页面实例

用uniapp获取当前页面实例的时候不能直接使用this
而是使用
	
	// 获取当前页面的实例
	let pages = getCurrentPages();
	//这句话 获取的才是当前页面实例
	let currentPage = pages[pages.length-1]
	官网有明确的定义
	https://uniapp.dcloud.io/collocation/frame/window?id=getcurrentpages
	page.$getAppWebview()   //获取webview
	//那么webview可以干啥?
	// 截屏绘制
	https://www.html5plus.org/doc/zh_cn/webview.html#plus.webview.WebviewObject.draw 
	//上面地址完整的可以进行截屏的方法,当你获取到截图的时候,就可以它存储到手机了


猜你喜欢

转载自blog.csdn.net/weixin_45932463/article/details/120200150