你想反馈一个 Bug 还是 提一个需求?
需求 webview自定义交互能力
* Bug 表现是什么?预期表现是什么?
例如html网页 button 点击的时候,我需要小程序获取用户信息(只是其中一个举例,还有很多类似需要自己处理)
<button class=“btn”>点击获取用户信息</button>
$(’.btn’).click(function(){
wx.miniProgram.userInfo(function(info){
});
});
//获取应用实例webview 小程序js 提供自定义函数交互
const app = getApp()
console.log(app);
Page({
data: {
},
userInfo:function(fn){
fn({name:‘wx’,sex:1,openid:‘asdsfsdfsd’});
},
onLoad: function () {
this.setData({ url:‘http://192.168.3.80:8080/xcx_demo.html#wechat_redirect’})
}
})
* 如何复现?
* 提供一个最简复现 Demo
如果是需求:
* 你希望有什么能力?
* 你需要这个能力的场景是 ?