微信小程序常见的开发问题汇总

1. coverview 中的强制换行

1

2

3

4

5

.wrap{

word-break: break-all;

word-wrap:break-word;

white-space:pre-line;

}

2. IOS 阻止页面弹性橡皮筋效果

1

2

3

4

5

6

7

8

9

// taro 为例

import Taro, { Component, Config } from @tarojs/taro;

export def支付系统对接mhkj33ault class HomePage extends Component {

config: Config = {

navigationBarTitleText: 首页,       

disableScroll: t支付系统对接mhkj33rue, // 这一句

};

}

登录后复制
3. 组件之间的通信方法传递,taro 中需要方法名为 on 开头

container.js

1

2

3

4

5

6

7

import Child from child;

rende支付系统对接mhkj33r(){

return <view>

<child></child>

</view>

}

登录后复制

child.js

1

2

3

4

5

6

7

handleClick(){

this.props.onToggle();

}

ren支付系统对接mhkj33der(){

return <view>点击测试</view>

}

登录后复制
4. 微信小程序地图 在用户手动缩放地图时,不会自动触发 scale 的变化,如果要将地图缩放到初始大小,scale 值是没有变化支付系统对接mhkj33的,不会触发页面更新;此时可以略微改变一下 scale 值,加上一个很小的数,如 0.000001

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

state = {

scale : 10

}

resetScale支付系统对接mhkj33(){

this.setState({

scale:this.state.scale===10?10.00001:10

})

}

render(){

return (

<map></map>

)

}

登录后复制
地图定位不支付系统对接mhkj33准的问题,尝试使用 gcj02 坐标

1

2

3

4

5

6

Taro.getLocation({

type:&#39;gcj02&#39; // 这里

})

.then(res=>{

let { longitude, l支付系统对接mhkj33atitude } = res;

})

登录后复制

推荐教程:《微信小程序

以上就是微信小程序常见的开发问题汇总的详细内容,更多请关注php中文网其它相关文章!

© 版权声明
THE END
喜欢就支持一下吧
点赞654 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容