H5向uni-app小程序传递参数

1.

本地下载包引入也可以。

 2.传递参数。

   uni.webView.postMessage({
            data: {
             num:'3'
            }
          })

3.接收参数。

@message="handleMessage"


	

	methods: {
			handleMessage(evt) {
				 console.log(evt.detail.data);
				this.num = evt.detail.data[evt.detail.data.length-1].num 
			}
		}

  获取当前数据是一个数组,每次获取让数组长度-1就是你需要的数据。

你可能感兴趣的:(uni-app,小程序,javascript)