詳解js界面跳轉(zhuǎn)與值傳遞
本文實(shí)例實(shí)現(xiàn)的功能如下:注冊(cè)頁(Register.js),點(diǎn)擊注冊(cè),跳到注冊(cè)結(jié)果頁(RegisterResult.js),并將注冊(cè)的手機(jī)號(hào)傳遞過去,顯示xx注冊(cè)成功。
index.Android.js
'use strict'
import React, { Component } from 'react';
import { AppRegistry,Navigator,BackAndroid} from 'react-native';
var Register = require('./study/Register');
let RegisterResult = require('./study/RegisterResult');
var NaviModule = React.createClass({
//告知Navigator模塊,我們希望在視圖切換時(shí),用什么效果
configureScene:function(route){
return Navigator.SceneConfigs.FadeAndroid;
},
//告知Navigator模塊,我們希望如何掛接當(dāng)前視圖
renderScene:function(router,navigator){
this._navigator = navigator;
switch(router.name){
case "register":
return <Register navigator = {navigator}/>
case "registerResult":
return <RegisterResult telephoneNumber = {router.telephoneNumber} navigator = {navigator}/>
}
},
//React的生命周期函數(shù)---組件被掛接時(shí)調(diào)用
componentDidMount:function(){
var navigator = this._navigator;
BackAndroid.addEventListener('NaviModuleListener',()=>{
if (navigator && navigator.getCurrentRoutes().length > 1) {
navigator.pop();
return true;
}
return false;
});
},
//React的生命周期函數(shù)---組件被移除時(shí)調(diào)用
componentWillUnmount: function(){
BackAndroid.removeEventListener('NaviModuleListener');
},
render:function(){
return (
<Navigator
initialRoute = {{name:'register'}}
configureScene = {this.configureScene}
renderScene = {this.renderScene} />
);
}
});
AppRegistry.registerComponent('FirstDemo', () => NaviModule);
注冊(cè)頁(Register.js)
'use strict'
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TextInput
} from 'react-native';
let Dimensions = require('Dimensions');
let totalWidth = Dimensions.get('window').width;
let leftStartPoint = totalWidth * 0.1;
let componetWidth = totalWidth * 0.8;
let Register = React.createClass({
getInitialState:function(){
return {
inputedNum :'',
inputedPW:'',
},
updatePW: function(newText){
this.setState({inputedPW : newText});
},
render: function() {
return (
<View style={styles.container}>
<TextInput style = {styles.numberInputStyle}
placeholder = {'請(qǐng)輸入手機(jī)號(hào)'}
onChangeText = {(aa) => this.setState({inputedNum :aa})}/>
<Text style={styles.textPromptStyle}>
您輸入的手機(jī)號(hào):{this.state.inputedNum}
</Text>
<TextInput style={styles.passwordInputStyle}
placeholder = {'請(qǐng)輸入密碼'}
password = {true}
onChangeText = {(newText) => this.updatePW(newText)}/>
<Text style={styles.bigTextPrompt}
onPress = {this.userRegister}>
注 冊(cè)
</Text>
</View>);
},
userRegister:function(){
this.props.navigator.replace({
telephoneNumber : this.state.inputedNum,
name: 'registerResult',
});
}
});
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection:'column',
justifyContent: 'center',
backgroundColor: '#F5FCFF',
},
numberInputStyle:{
top:20,
left:leftStartPoint,
width:componetWidth,
backgroundColor:'gray',
fontSize:20
},
textPromptStyle:{
top:30,
left:leftStartPoint,
width:componetWidth,
fontSize:20
},
passwordInputStyle:{
top:50,
left:leftStartPoint,
width:componetWidth,
backgroundColor:'gray',
fontSize:20
},
bigTextPrompt:{
top:70,
left:leftStartPoint,
width:componetWidth,
backgroundColor:'gray',
color:'white',
textAlign:'center',
fontSize:60
}
});
module.exports = Register;
注冊(cè)結(jié)果頁RegisterResult.js
'use strict'
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TextInput
} from 'react-native';
let RegisterResult = React.createClass({
render:function(){
return(
<View style = {styles.container}>
<Text style = {styles.text}>
{this.props.telephoneNumber}注冊(cè)成功
</Text>
</View>
);
}
});
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection:'column',
justifyContent: 'center',
alignItems:'center',
backgroundColor: '#F5FCFF',
},
text:{
flexWrap:'wrap',
backgroundColor:'gray',
fontSize:20,
paddingTop:10,
paddingBottom:10,
paddingLeft:25,
paddingRight:25
},
});
module.exports = RegisterResult;
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
JS加jquery簡(jiǎn)單實(shí)現(xiàn)標(biāo)簽元素的顯示或隱藏
標(biāo)簽元素的顯示或隱藏在使用中還是挺頻繁的,下面有個(gè)不錯(cuò)的示例,大家可以參考下,或許有所幫助2013-09-09
javascript使用遞歸算法求兩個(gè)數(shù)字組合功能示例
這篇文章主要介紹了javascript使用遞歸算法求兩個(gè)數(shù)字組合功能,結(jié)合實(shí)例形式分析了JS基于遞歸算法的數(shù)組遍歷、判斷、轉(zhuǎn)換等相關(guān)操作技巧,需要的朋友可以參考下2017-01-01
滾動(dòng)條響應(yīng)鼠標(biāo)滑輪事件實(shí)現(xiàn)上下滾動(dòng)的js代碼
javascript實(shí)現(xiàn)滾動(dòng)條響應(yīng)鼠標(biāo)滑輪的實(shí)現(xiàn)上下滾動(dòng),示例代碼如下2014-06-06
url特殊字符編碼encodeURI?VS?encodeURIComponent分析
這篇文章主要介紹了url特殊字符編碼encodeURI?VS?encodeURIComponent分析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-09-09
js實(shí)現(xiàn)iframe動(dòng)態(tài)調(diào)整高度的代碼
iframe,尤其是不帶邊框的iframe因?yàn)槟芎途W(wǎng)頁無縫的結(jié)合從而不刷新頁面的情況下更新頁面的部分?jǐn)?shù)據(jù)成為可能,可是iframe的大小卻不像層那樣可以“伸縮自如”,所以帶來了使用上的麻煩,給iframe設(shè)置高度的時(shí)候多了也不好,少了更是不行,現(xiàn)在,讓我來告訴大家一種iframe動(dòng)態(tài)調(diào)整高度的方法,主要是以下JS函數(shù):2008-01-01
js實(shí)現(xiàn)for循環(huán)跳過undefined值示例
這篇文章主要介紹了js實(shí)現(xiàn)for循環(huán)跳過undefined值,結(jié)合實(shí)例形式分析了js使用for循環(huán)針對(duì)數(shù)組的遍歷、判斷、運(yùn)算等相關(guān)操作技巧,需要的朋友可以參考下2019-07-07
JavaScript事件學(xué)習(xí)小結(jié)(二)js事件處理程序
這篇文章主要介紹了JavaScript事件學(xué)習(xí)小結(jié)(二)js事件處理程序的相關(guān)資料,非常不錯(cuò)具有參考借鑒價(jià)值,需要的朋友可以參考下2016-06-06

