- 键盘弹出,会挤开内容
[图片] [图片] 唤起键盘内容就被挤开了怎么解决啊? 求各位大神帮助
2017-01-09 - 使用全局的promise 在个别手机上不能无效
使用 Promise = require('./lib/promise.js') 使用全局变量 在低版本的系统会有问题 如 ios 9.3.2 错误 [代码]Can't find variable promise stack[代码]
2017-01-09 - ...data 作为template的data 传值在wx:for 中取不到值
// test.js 页面数据 Page({ data: { test: { aaa: 1, bb: [{ id: 1, name: 'qiushi' },{ id:2, name: 'siteng' }] } } }) // test.wxml 引用模版 <import src="parent.wxml" /> <template is="test" data="{{...test}}" /> // parent.wxml <template name="test"> {{aaa}} <include src="item.wxml" /> </template> // item.wxml <view> {{aaa}} <block wx:for="{{bb}}"> {{item.name}}, {{aaa}} // 最后在结果中引用不到aaa </block> </view> 结果: 1 1 qiushi,siteng, 最后在结果中引用不到aaa
2016-12-21