个人案例
- 菜谱云平台
分享自己喜欢的菜谱,实现了菜谱的增删改查。
菜谱云平台扫码体验
- 小程序页面分享到朋友圈,从朋友圈打开是空白页,总是报错,是怎么回事?
从朋友圈打开后,报错:createSignal:fail rejected due to no permission currentl [图片]
2021-02-08 - 父组件调用子组件中的方法,为啥不好用呢?
我想在页面中detail中调用子组件<mp-radio />中的方法play(), 用this.selectComponent(".audio")获取子组件,为啥返回null呢?[图片]
2021-02-05 - 这播放音频的两个接口有什么不同?
wx.createAudioContext()和wx.getBackgroundAudioManager()都能播放音频,有什么不同么?
2021-02-05 - 音乐播放,为什么需要点击两遍,才开始播放?
用wx.createInnerAudioContext()接口封装了一个组件叫audio,但是每次点击两遍播放之后,才能开始播放,是什么原因呢? [图片] components/audio/audio.js // components/audio/audio.js Component({ properties: { //音频地址 src: { type: String, value: '', }, //图书封面图片 poster: { type: String, value: '' } }, data: { audioContext: null, // src: "", currentTime: 0, duration: 0, flag: "play" //play 显示播放按钮;load 显示加载按钮;pause 显示暂停按钮 }, lifetimes: { attached() { this.data.audioContext = wx.createInnerAudioContext() this.data.audioContext.src = this.data.src; this.data.audioContext.loop=false; this.data.src = this.properties.src; this.data.poster = this.properties.poster; }, detached: function () { this.data.audioContext.destroy() } }, methods: { //音频播放 play() { this.data.audioContext.play() this.setData({ flag: "load" }) //开始播放瞬间 this.data.audioContext.onCanplay(() => { this.setData({ flag: "pause" }) this.timeUpdate() }) }, //暂停播放 pause() { this.data.audioContext.pause() this.setData({ flag: "play" }) }, timeUpdate() { //播放过程中 this.data.audioContext.onTimeUpdate((res) => { let currentTime = this.data.audioContext.currentTime; let duration = this.data.audioContext.duration; this.setData({ currentTime, duration }) }) }, //滑块滚动 handleSlider(e) { var value = e.detail.value; console.log(e, '1111') this.data.audio.seek(value) }, //点击大图 posterClick() { wx.previewImage({ urls: [this.properties.poster], }) } }, }) components/audio/audio.json { "component": true, "usingComponents": { "mp-icon": "weui-miniprogram/icon/icon" } } comsponents/audio/audio.wxml <view class="top"> <image class="poster" mode="aspectFill" src="{{poster}}" class="book" bindtap="posterClick"></image> <view class="bof"> <view class="time">{{currentTime}}</view> <slider block-size="12" min="0" max="{{duration}}" activeColor="#07ab74" class="slider" value="{{currentTime}}" bindchange="handleSlider"> </slider> <view class="time">{{duration}}</view> </view> <view class="a"> <mp-icon wx:if="{{flag=='play'}}" icon="play2" color="#07ab74" size="60" type="field" bindtap="play" /> <image wx:elif="{{flag=='load'}}" class="load" src="./images/load.png" mode="aspectFit"></image> <mp-icon wx:else icon="pause" color="#07ab74" size="60" type="field" bindtap="pause" /> </view> <view>{{currentTime}}</view> </view>
2021-02-04 - 流量主结算可以用电子发票么?每次邮寄发票真的好麻烦
流量主结算可以用电子发票么?我的主体是个体工商户,每次开具纸质发票真的好麻烦,因为每次都要到税务局去开具,还得工作时间去,去了还得排队~~~
2021-01-28 - 对象里面有等号,是什么语法呢?
大家管这种定义叫什么名字呢? [图片] {uid="1001",realname="张三"} console.log(uid,realname)
2021-01-25 - 个体工商户,如何打包邮寄发票?
我的小程序广告收款主体是个体工商户,每个月邮寄两次发票很是麻烦,我年底的时候打包邮寄一次可以么?我上个月没有邮寄发票,就直接把款打到了经营者的个人账户,扣掉了20%的劳务报酬税。我年底的时候打包一起发送不行么?如果可以的话,在后台什么地方提交申请。
2021-01-25 - 结算账户如果是个体工商户,也是按照这个人缴税么?
结算账户如果是个体工商户,也是按照个人缴税么? [图片]
2021-01-24 - 我的小程序广告主收入5301,实际进账4406,是怎么回事呀?
我的结算单中的数据是5301元,但是实际到银行卡只有4406元,是怎么回事呀? 我的小程序收款主体是个体工商户 appid:wx6ec4f2956a837aef [图片]
2021-01-24 - 我的小程序广告收款主体是个体工商户,每个月邮寄两次发票很是麻烦,我年底的时候打包邮寄一次可以么?
[图片]
2021-01-24