- 小程序发布上线了,搜索不到
小程序发布上线一个小时了,还搜索不到,现实小程序系统更新维护中...
2019-01-25 - 小程序tabBar切换出现白屏
小程序重启耗时过久,请确认业务逻辑中是否有复杂运算,或者死循环
2019-01-04 - for循环处突然报出这种错,有些安卓数据还不能显示
for developer:Do not set same key {true} in wx:key, <!-- 分类 --> <view class="layout cate"> <view class="title_left message-category"> <!--cate-active 选中 --> <scroll-view class="flex" scroll-x="false" scroll-with-animation="true"> <view class="category {{labelType==index? 'cate-active' : ''}}" wx:for="{{hotStar}}" wx:key="hotStar" data-labelid="{{index}}" bindtap="tabFun">{{item.itemName}}</view> </scroll-view> </view> <view class="scroll-view {{labelType==index? 'show-active' : 'hide-active'}}" wx:for="{{hotStar}}" wx:key="hotStar" wx:for-item="hotStar"> <scroll-view class="scroll-view_H" scroll-x="true" scroll-with-animation="true" scroll-into-view="{{toView}}" scroll-left="{{scrollTop}}"> <!-- 滚动第一个view --> <view class="scroll-view-item_H" wx:for="{{hotStar.dtos}}" wx:key="hotStarVOs" data-id="{{item.starId}}"> <!-- 弹授权 --> <button open-type="getUserInfo" bindgetuserinfo="getUserInfo" class="scroll-view-item_H_C left" data-id="{{item.starId}}" data-status="热门人物" data-id="{{item.starId}}" plain> <view class='img'> <image lazy-load="true" wx:if="{{item.avatar != ''}}" src="{{item.avatar}}"></image> <image lazy-load="true" wx:else src="{{imageUrl}}/images/index/placeholder@3x.png"></image> </view> <view class='info flex'> <view class='product flex'> <view class="title {{item.productVOs.length == ''?'active':''}}">{{item.peopleName}}</view> <text class='line' wx:if="{{item.productVOs.length != ''}}">|</text> <view class='product-name'>{{item.productVOs[0].productName}}</view> </view> <view class='people'> <text>{{item.hotTitle==null?'-':item.hotTitle}}</text> </view> </view> </button> </view> </scroll-view> </view> </view>
2018-06-12 - 用canvas生成的图片路径,分享时,开发版测试能显示,线上显示不出来
saveImage: function () { var that = this wx.canvasToTempFilePath({ x: 0, y: 0, width: that.data.scrollWidth, height: that.data.y, destWidth: 500, destHeight: 400, canvasId: 'shareCanvas', success: function (res) { that.setData({ shareImage: res.tempFilePath }) console.log("生成名片shareImage:", that.data.shareImage) }, fail: function (res) { console.log("失败啦res:", res) } }) },
2018-06-08 - 无法收到客服的自动回复的消息
无法收到客服的自动回复的消息
2018-04-18 - navigationBar多高
navigationStyle: "custom"我需要用这个模式,在顶部画一个小房子,需要知道顶部的高度
2018-04-08 - 测试时,场景值打印,分享后,分享进去打印不出来
测试分享给用户能否获取场景值,分享后,用分享的页面点击进小程序,无法打印出场景值,什么原因导致的,模拟器是可以打印出场景值的
2018-04-03 - 分享进入页面左边顶部出现小房子按钮
[图片]现有一需求,正常顶部左边显示的是返回按钮,在分享时进入页面顶部如何显示小房子按钮
2018-04-03