小程序可以独自开发发布的,如果能够有开发能力可以自行开发,或者找第三方开发
独立开发者如何发布小程序?只有自己一个管理员,要发布的时候: 你尚未绑定任何开发者,请先绑定开发者 该微信用户是本帐号管理员,无需重复绑定 小程序是不能独自开发发布的么?
2019-01-03是的
swiper动态删除导致空白wxml: <view class="page-section page-section-spacing swiper"> <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" circular="{{circular}}" vertical="{{vertical}}" interval="{{interval}}" duration="{{duration}}" previous-margin="{{previousMargin}}px" next-margin="{{nextMargin}}px"> <block wx:for="{{background}}" wx:key="*this"> <swiper-item> <view bindtap='delete' class="swiper-item {{item}}"></view> </swiper-item> </block> </swiper> </view> js: Page({ data: { background: ['demo-text-1', 'demo-text-2', 'demo-text-3'], indicatorDots: true, vertical: false, autoplay: false, circular: false, interval: 2000, duration: 500, previousMargin: 0, nextMargin: 0 }, changeProperty: function (e) { var propertyName = e.currentTarget.dataset.propertyName var newData = {} newData[propertyName] = e.detail.value this.setData(newData) }, changeIndicatorDots: function (e) { this.setData({ indicatorDots: !this.data.indicatorDots }) }, changeAutoplay: function (e) { this.setData({ autoplay: !this.data.autoplay }) }, intervalChange: function (e) { this.setData({ interval: e.detail.value }) }, durationChange: function (e) { this.setData({ duration: e.detail.value }) }, delete: function(e) { this.data.background.splice(2, 1) this.setData({ background: this.data.background }) } }) 初始化页面: [图片] 滑动到C点击页面删除后,swiper呈现空白: [图片] 代码用的就是官方的demo,增加了tap删除功能。
2018-06-19[图片]
开发版本与体验版本,以及远程调试不一致开发版本与体验版本,以及远程调试不一致,在开发版createQuerySelector调用报错,体验版和远程调试未报错
2018-06-14请问你们有对策吗
iphone video 视频播放当iphone播放长视频的时候大部分情况会播放不了,转圈几下就会停止黑屏,有时候会有声音但是没画面。
2018-06-13