- 我的小程序没有审核通过
我的小程序主要内容是:比特币,虚拟货币的价格查询。这并没有违规。 我之前已经仔细阅读了 小程序的各种文档。我不明白为什么要拒绝我。就因为比特币是敏感词汇么。 而且线上也有很多数字货币相关的项目啊。公众号也有。我觉得我这次被拒绝是不合理的!
2017-07-21 - 发现 view 标签 布局的一个问题
给各路神仙分享一下 问题描述: 文本内容以容器的宽度为界,自动换行。但是在手机上看到的结果是,在换行的文本之前多了一整行空白 代码: <!-- 此段代码会多出一行空白 --> <view class="list"> <view> dsad321321dsad321321dsad321321dsad321321dsad321321dsad321321dsad321321 </view> </view> <!-- 不换行的代码,显示正常 --> <view class="list"> <view> dsad32132 </view> </view> 开发者工具上的效果: [图片] 手机效果: [图片] 各位看到了吧,第一块已经换行的内容 多出了一行内容。 原因: 是因为微信吧空白的文本节点也当做一行内容来展示了。而浏览器上是不会这样的。所以代码要改下 错误的写法 <view class="list"> <view> dsad321321dsad321321dsad321321dsad321321dsad321321dsad321321dsad321321 </view> </view> 正确的写法 <view class="list"> <view>dsad321321dsad321321dsad321321dsad321321dsad321321dsad321321dsad321321</view> </view> 然后再在手机上看下一,完美 [图片]
2017-07-04 - 调用 iconfont 出错
引入iocnfont 文件是不出错,但是调用 他的类的时候出错了 引用时没错 [图片] 调用时错了 [图片] [图片]
2017-06-19 - 调用 iconfont 类 时出错
引入iocnfont 文件是不出错,但是调用 他的类的时候出错了 引用时没错 [图片] 调用时错了 [图片] [图片]
2017-06-16 - createAnimation
动画执行一次之后 下次执行是按照上次执行的位置 执行的,但是我现在想实现。动画执行完毕之后恢复原来的状态。 比如 ↑ 向上 移动并且消失 的动画, 当我再次执行这个动画的时候 发现 剪头原地不动,只是执行了消失的操作
2017-05-05 - template 和 wx:for 问题
我发现在 循环的时候,模板中引用的动画不会执行 source:[ { anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() },{ anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() },{ anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() },{ anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() }, ] <template name="teml"> <view animation="{{anim}}" > // 这里的动画不会执行 循环时,模板中引用的动画不会执行 </view> </template> <block wx:for="{{source}}" wx:key="item"> <template is="teml" data="{{...item}}" /> </block> // 这样就可以执行 <template is="teml" data="{{...source[0]}}" />
2017-05-04 - 我发现在 循环的时候,模板中引用的动画不会执行
source:[ { anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() },{ anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() },{ anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() },{ anim: wx.createAnimation({ duration: 400, timingFunction: 'ease' }).translateY(10).opacity(1).scaleX(1).step().export() }, ] <template name="teml"> <view animation="{{anim}}" > // 这里的动画不会执行 循环时,模板中引用的动画不会执行 </view> </template> <block wx:for="{{source}}" wx:key="item"> <template is="teml" data="{{...item}}" /> </block>
2017-05-03 - 定义的 template 如何在提其他页面中引用
定义的 template 如何在提其他页面中引用,貌似我目前没有在 API文档中看到这方面的解释 A文件夹中的 main.wxml 定义, B文件夹中的 index.wxml 中引用
2017-05-03