.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> }
state = { scale : 10 } resetScale(){ this.setState({ scale:this.state.scale===10?10.00001:10 }) } render(){ return ( <Map scale={this.state.scale}/> ) }
Taro.getLocation({ type:'gcj02' // 这里 }) .then(res=>{ let { longitude, latitude } = res; })
추천 튜토리얼: "WeChat Mini 프로그램》
위 내용은 WeChat 미니 프로그램의 일반적인 개발 문제 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!