- 微信小程序onload的options获取失败?
我在跳转页面时,把参也传过来了,但是在onload接受的时候,显示options未定义,为什么? [图片] 主要代码如下 index.html activityDetail: function(e) { var data = e.currentTarget.dataset; console.log(data.id,'data.id') wx.navigateTo({ url: './takeContent/takeContent?id=' + data.id, }) } index2.html onLoad: function (options) { debugger this.setData({ id: options.id, }) console.log(options.id,'id') },
2019-10-09 - 微信小程序怎么才能引入个性的字体?
最近写一个需要标题 要求用花里胡哨的字体来展示 但是发现小程序限制比较多,用不了外面的 我应该怎么引进来
2019-09-29 - 小程序可以点击弹框的确定直接关闭小程序吗?
[图片] 我想让他点击完确定直接关闭小程序,可以实现吗
2019-09-26 - 小程序在开发工具中判断并渲染成功,但是在真机上就没有成功,为什么?
在页面做了一个判断,小程序在开发工具中判断并渲染成功,但是在真机上就没有成功,为什么? <view wx:if="{{!item.beginTime || item.beginTimeDate < now}}" class="activity-watch-exchange" data-index="{{item.id}}" bindtap="exchangeIntegral">立即兑换</view> <view wx:else class="exchange-time" >{{item.beginTime}}</view> if (res.success) { for(let item of res.obj) { console.info("=======", item.id) item.beginTimeDate = new Date(item.beginTime) item.beginTime = item.beginTime ? dateFormat(item.beginTimeDate, 'MM-dd HH:mm 开抢') : item.beginTime; console.info("ggggg", item.beginTimeDate,"1212", !item.beginTime || this.data.now,"1111", item.beginTimeDate < this.data.now) console.log(item.beginTimeDate < this.data.now,'!item.beginTime || this.data.now,') } this.setData({ 'integralList.activitySpecial': res.obj }) } 这个是开发工具中的样子,是判断成功的 [图片] 这个是手机预览的样子,判断没成功 [图片] 这个是为什么呀
2019-09-24 - 如何判断你是每天的首次打开小程序,并进行签到提示?
wx.setStorage({ key: 'sign_in', data: dateFormat(new Date(), "yyyy-MM-dd") }); this.sign_in = wx.getStorageSync('sign_in')//在storage里取数据 console.log(this.sign_in,'sign_in') if (this.sign_in == null){ wx.showToast({ title: '签到成功', icon: 'success', duration: 2000 }) 这样不可以,应该怎么判断this.sign_in才可以只签到首次
2019-09-23 - 微信小程序怎么才能在循环列表中,触发点击事件后获取到点击词条数据的值呢?
[图片] 如上图我想点击立即对换然后获取到这一条数据的数据,但是我现在点击兑换,获取到的是所有数据的值而不是这一条数据的值 <view class="activity-watch-exchange" data-index="1" bindtap="exchangeIntegral" >立即兑换</view> async exchangeIntegral(event) { let arrs = this.data.integralList.activitySpecial; let query = event.currentTarget.dataset['index']; console.log(event.currentTarget.dataset['index'],"event.currentTarget.dataset['index']"); console.log(arrs,); for(let i of arrs){ // console.log(i.id,'i.id') } console.log(arrs[0].id,'i.id') let param = { personId:'11', goodsId: '11111' } let res = await oilWeChatAppService.exchangeIntegral(param); // debugger if (res.success) { wx.showToast({ title: '成功兑换', icon: 'success', image: '../../resource/imgs/warning.png', duration: 2000 }) }
2019-09-22 - 企业微信获取成员信息时失败,为什么?
我要关联企业微信,获取企业微信成员的信息,但是获取失败,下图是打印出来的东西 [图片] 说我需要获取jscode2session,企业微信如何获取jscode2session,
2019-09-21 - 微信小程序可以实现多多选题吗?不是复选框的那个
微信小程序可以实现多多选题吗?不是复选框的那个,我只能实现单选,然后多选就不可以 [图片] 代码 <view wx:for-index="index" wx:if="{{!answerLimit}}" wx:for="{{questionList}}"> <view class="content-title"> {{item.questionTitle}} </view> <view class="content-questionA {{showView && key==index && clickSelect ? 'content-questionA-select' : (!showView && key==index && clickSelect && item.answer == items.questionSelect) ? 'content-answer-select' : (!showView && key==index && clickSelect && item.answer !== items.questionSelect) ? 'content-questionA-select' : 'content-questionA' }}" wx:for="{{item.questions}}" wx:for-index="index" wx:for-item="items" bindtap='selectAnswer' data-index='{{index}}'> <text class="question-select {{showView && key==index && clickSelect ? 'question-select' : (!showView && key==index && clickSelect && item.answer == items.questionSelect) ? 'question-select-srue' : (!showView && key==index && clickSelect && item.answer !== items.questionSelect) ? 'question-select' : 'question-no-select' }}">{{items.questionSelect}}</text>{{items.question}} <image wx:if="{{!showView && key==index && item.answer != items.questionSelect }}" src="../../resource/imgs/cancel.png" class="question-cancel"></image> <image wx:if="{{!showView && key==index && item.answer == items.questionSelect }}" src="../../resource/imgs/srue.png" class="question-cancel"></image> </view> <view class="set-readable" wx:if="{{!showView}}"></view> <view class="answer-analysis" wx:if="{{!showView}}"> <view class="answer-select">正确答案:{{item.answer}}</view> <view class="answer-analysis-centent">{{item.answerAnalysis}}</view> </view> <view class="select-button"> <button class="submite" wx:if="{{showView}}" bindtap="srue">确定</button> <button class="next-question" wx:else="{{!showView}}" bindtap="nextQuestion">下一题</button> </view> </view>
2019-09-18 - 微信小程序如何去掉checkbox前面的方框?
微信小程序如何去掉checkbox前面的方框,我只想要这个复习框的功能,但是我不想要这个复选框前面的方框,应该怎么做呀 checkbox-group bindchange="checkboxChange"> <label class="checkbox" wx:for="{{items}}" wx:key="item"> <checkbox value="{{item.name}}" checked="{{item.checked}}">{{item.value}}</checkbox> </label> </checkbox-group>
2019-09-18 - 现在微信小程序还是不可以使用async await异步请求吗?
异步请求结果报错了,该,怎么解 [图片]
2019-09-17