wx.chooseMedia,选取视频后,返回数据中有视频缩略图。这个使用很方便。
Taro怎么没有提供chooseMedia API 呢?
什么时候提供?有时间节点吗?
J
jd_668828d441028 发布的帖子
-
Taro怎么没有chooseMedia?
-
tabbar不显示
在app.js中配置了tabBar,但是在rn的App上不显示,在微信小程序能正常显示
config = {
pages: [
'pages/index/index',
'pages/task/index'
],
window: {
backgroundTextStyle: 'dark',
navigationBarBackgroundColor: '#1c6fab',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'white',
backgroundColor: '#EFEFF4',
},
tabBar: {
color: '#000',
selectedColor: '#1c6fab',
backgroundColor: '#fff',
borderStyle: 'black',
list: [
{
pagePath: 'pages/index/index',
text: '首页',
iconPath: '',
selectedIconPath: ''
},
{
pagePath: 'pages/task/index',
text: '任务',
iconPath: '',
selectedIconPath: ''
},
],
position: 'bottom'
}
}