微信小程序開發常見問題彙總

1. coverview 中的強制換行

.wrap{
  word-break: break-all;
  word-wrap:break-word;
  white-space:pre-line;
}

2. IOS 阻止頁面彈性橡皮筋效果

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

export default class HomePage extends Component {
    config: Config = {
        navigationBarTitleText: '首頁',       
        disableScroll: true, // 這一句
    };
}

3. 組件之間的通訊方法傳遞,taro 中須要方法名爲 on 開頭

container.jscss

import Child from 'child';

render(){
    return <View>
        <Child onToggle={this.handleToggle.bind(this)}/>
    </View>
}

child.jsgit

handleClick(){
    this.props.onToggle();
}

render(){
    return <View onClick={this.handleClick.bind(this)}>點擊測試</View>
}

4. 微信小程序地圖

  • 在用戶手動縮放地圖時,不會自動觸發 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;
})
相關文章
相關標籤/搜索