[图片]
小程序底部可以放几个菜单请问小程序的底部,可以放几个菜单?
2018-05-16mlist里 每个item带一个 属性,比如 isHidden。然后text设上wx:if isHidden
希望对view中的wx:for循环中的列表的某一个子view进行操作,比如隐藏<view wx:for="{{mlist}}"> <text class='caption'>{{item.cnname}} </text> <view> 这个列表中,希望点一下这个列中的文字,然后就隐藏这个text(只是列表中点击的那一项)而不是全部。 应该怎么处理呢? 麻烦大家了。
2018-05-16这个页面,一旦被加载过,重进这个页面的时候这种变量就不会重新初始化了,是关闭页面时候的值
关于global在开发过程中,发现可以用global存放一些东西。 比如 global.regeneratorRuntime = require('./utils/plugins/regenerator-runtime/runtime.js'); global.co = require('./utils/plugins/co/index.js'); global._ = require('./utils/plugins/underscore_modified.js'); 又或者 global.userInfo = {}; 但是还有一种全局变量 App({ globalData:{ } }) 貌似是官方文档上提供的。 因为没在官方文档中看到global变量,但实在又比较好用。就想问一下,我这样用没关系吧。 用global跟用App({globalData})有什么区别吗,或者说会有什么坑吗?
2018-05-15绝对布局一个高度100%的view,然后left的位置为负的 这个view的宽度。点击按钮的时候,用动画将这个view的left设成0
关于自定义导航栏已经设置了首页面的title,如何在左上角加一个图标可以点击在左侧出现选项卡, 类似于qq左上角的个人信息 求助各位大佬`
2018-05-15生效的,请检查代码
Component构造器中能否使用wx.createAnimation- 需求的场景描述(希望解决的问题) 刚做了个弹框组件,弹框里做了一些动画效果,做好后发现动画不生效,想问是不是Component不支持添加动画? - 希望提供的能力 Component中使用wx.createAnimation动画。
2018-05-15你肯定是wx:for循环的一个array吧,wx:for的时候绑定个index,然后点击按钮的时候把index传进去,在array里移除
如何删除组件[图片] 点击删除的icon ,怎样删掉这个当前的view?
2018-05-15完全听不懂你在说什么,要帮你看什么
为什么不是图片下面是文字的效果是代码出问题了吗???麻烦大家帮我看看原因,谢谢! <view class="container"> <view class="selection"> <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}"> <block wx:for="{{imgUrls}}" wx:key="quite"> <swiper-item> <image src="{{item}}" class="slide-image" width="355" height="150" /> </swiper-item> </block> </swiper> </view> <view class="selection"> <view class="header"> <text>精品推荐</text> <text class="text_all">全部精品</text> </view> <view class="content"> <view class="content_item" wx:for="{{contentItem}}" wx:key="quite"> <image src='{{img}}'></image> <view class="content_item_text">这里是标题</view> </view> </view> </view> <view class="selection"> <view class="header"> <text>热门评测</text> <text class="text_all">全部评测</text> </view> <view class="list_item" wx:for="{{imageitem}}"> <view class="list_item_image" > <image src='../../../image/2.jpg'></image> </view> <view class="list_item_text"> fdgdhgdhdh </view> </view> </view> </view> swiper{ width: 100%; height: 340rpx; } swiper image{ display: block; width: 100%; height: 100%; } .header{ border-left-width: 2px; border-left-style: solid; border-left-color: green; display: flex; justify-content: space-between; align-items: center; } .text_all{ color: green; font-size: 12px; } .content{ display: flex; flex-wrap: wrap; justify-content: center; } .content_item{ width: 350rpx; height: 200rpx; background-color: blanchedalmond; margin: 5px; position: relative; } .content_item image{ width: 100%; height: 100%; } .content_item_text{ position: absolute; bottom: 0px; color: white; font-size: 15px; background: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0)); height: 80rpx; width: 98%; display: flex; flex-direction: column; justify-content: flex-end; padding: (1%,1%,1%); } .list_item{ display: flex; height: 500rpx; width: 100%; } .list_item_image{ height: 100%; width: 100%; } .list_item_text{ height: 200rpx; width: 100%; background: brown; } Page({ /** * 页面的初始数据 */ data: { imgUrls: [ 'http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg' ], indicatorDots: true, autoplay: true, interval: 5000, duration: 1000, img:[ '../../../image/lunbo.jpg' ], contentItem:['','','',''], imageitem: ['', '', '', '','', '', '', '' ] }, })
2018-05-15买个大尺寸显示器。。
编辑器使用问题当编辑器,模拟器,调试器三者同时打开的时候,开发者工具并不能同时显示这三个模块,而是只显示模拟器,怎么样才能让三个同时显示 [图片]
2018-05-15setData是个异步操作,生效的时候实际位置已经滚过去了,位移一下不是正常的吗?
movable-viewmovable-view在拖动的时候,边拖动边动态设置x,y坐标,之后控件会自己位移一段距离。代码如下 [代码]<[代码][代码]movable-area[代码] [代码]style[代码][代码]=[代码][代码]"height: 400px;width: 100%;background: red;"[代码][代码]>[代码][代码] [代码][代码]<[代码][代码]block[代码] [代码]wx:for[代码][代码]=[代码][代码]"{{list}}"[代码][代码]>[代码][代码] [代码][代码]<[代码][代码]movable-view[代码] [代码]data-index[代码][代码]=[代码][代码]'{{index}}'[代码] [代码]bindchange[代码][代码]=[代码][代码]'move'[代码] [代码]style[代码][代码]=[代码][代码]"height: 50px; width: 50px; background: blue;"[代码][代码]x[代码][代码]=[代码][代码]"{{item.x}}"[代码] [代码]y[代码][代码]=[代码][代码]"{{item.y}}"[代码] [代码]direction[代码][代码]=[代码][代码]"all"[代码][代码]>[代码][代码] [代码][代码]</[代码][代码]movable-view[代码][代码]>[代码][代码] [代码][代码]</[代码][代码]block[代码][代码]>[代码][代码] [代码][代码]</[代码][代码]movable-area[代码][代码]>[代码] [代码]<[代码][代码]button[代码] [代码]class[代码][代码]=[代码][代码]"button-right"[代码] [代码]style[代码][代码]=[代码][代码]"width:40%;"[代码] [代码]bindtap[代码][代码]=[代码][代码]"tap"[代码][代码]>确认</[代码][代码]button[代码][代码]>[代码] Page({ /** * 页面的初始数据 */ data: { list:[], currentPage:0 }, move:function(e){ var dataset = e.target.dataset; var Index = dataset.index; this.data.list[Index].x = e.detail.x; this.data.list[Index].y = e.detail.y; this.setData({ list:this.data.list }) console.log(this.data.list) }, tap:function(e){ var sign = [ { current:this.data.currentPage, x:0, y:0 } ] this.setData({ list:this.data.list.concat(sign) }) }, }) [代码]Page({[代码] [代码] [代码][代码]/**[代码][代码] [代码][代码]* 页面的初始数据[代码][代码] [代码][代码]*/[代码][代码] [代码][代码]data: {[代码][代码] [代码][代码]list:[],[代码][代码] [代码][代码]currentPage:0[代码][代码] [代码][代码]},[代码] [代码] [代码][代码]move:[代码][代码]function[代码][代码](e){[代码][代码] [代码][代码]var[代码] [代码]dataset = e.target.dataset;[代码][代码] [代码][代码]var[代码] [代码]Index = dataset.index;[代码][代码] [代码][代码]this[代码][代码].data.list[Index].x = e.detail.x;[代码][代码] [代码][代码]this[代码][代码].data.list[Index].y = e.detail.y;[代码][代码] [代码][代码]this[代码][代码].setData({[代码][代码] [代码][代码]list:[代码][代码]this[代码][代码].data.list[代码][代码] [代码][代码]})[代码][代码] [代码][代码]console.log([代码][代码]this[代码][代码].data.list)[代码][代码] [代码][代码]},[代码] [代码] [代码][代码]tap:[代码][代码]function[代码][代码](e){[代码][代码] [代码][代码]var[代码] [代码]sign = [[代码][代码] [代码][代码]{[代码][代码] [代码][代码]current:[代码][代码]this[代码][代码].data.currentPage,[代码][代码] [代码][代码]x:0,[代码][代码] [代码][代码]y:0[代码][代码] [代码][代码]}[代码][代码] [代码][代码]][代码] [代码] [代码][代码]this[代码][代码].setData({[代码][代码] [代码][代码]list:[代码][代码]this[代码][代码].data.list.concat(sign)[代码][代码] [代码][代码]})[代码][代码] [代码][代码]},[代码] [代码]})[代码]
2018-05-14我也想问,你这是什么意思????你是在看一个什么文档,然后里面写了啥吗?
onShow 的时候不是群分享,清空 Global.lastShareInfo从微信群的分享进入小程序,判断授权,使用openSetting( ),打开授权之后,点击右上角返回页面,页面显示上述情况。这个是什么意思?
2018-05-14