小编给大家分享一下微信小程序中常见的开发问题有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
.wrap{ word-break: break-all; word-wrap:break-word; white-space:pre-line; }
// taro 为例 import Taro, { Component, Config } from '@tarojs/taro'; export default class HomePage extends Component { config: Config = { navigationBarTitleText: '首页', disableScroll: true, // 这一句 }; }
container.js
import Child from 'child'; render(){ return <View> <Child onToggle={this.handleToggle.bind(this)}/> </View> }
child.js
handleClick(){ this.props.onToggle(); } render(){ return <View onClick={this.handleClick.bind(this)}>点击测试</View> }
在用户手动缩放地图时,不会自动触发 scale 的变化,如果要将地图缩放到初始大小,scale 值是没有变化的,不会触发页面更新;此时可以略微改变一下 scale 值,加上一个很小的数,如 0.000001
state = { scale : 10 } resetScale(){ this.setState({ scale:this.state.scale===10?10.00001:10 }) } render(){ return ( <Map scale={this.state.scale}/> ) }
地图定位不准的问题,尝试使用 gcj02 坐标
Taro.getLocation({ type:'gcj02' // 这里 }) .then(res=>{ let { longitude, latitude } = res; })
以上是“微信小程序中常见的开发问题有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。