mirror of
https://github.com/wu736139669/RN_AWord.git
synced 2026-08-05 06:24:39 +00:00
优化
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
//3个主界面的listview
|
//收藏页面
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
import React, {
|
import React, {
|
||||||
|
|||||||
@@ -0,0 +1,145 @@
|
|||||||
|
//主页
|
||||||
|
'use strict';
|
||||||
|
import React, {
|
||||||
|
AppRegistry,
|
||||||
|
Component,
|
||||||
|
StyleSheet,
|
||||||
|
ListView,
|
||||||
|
Text,
|
||||||
|
View,
|
||||||
|
Image,
|
||||||
|
TouchableOpacity,
|
||||||
|
AlertIOS,
|
||||||
|
RefreshControl,
|
||||||
|
ActivityIndicatorIOS
|
||||||
|
} from 'react-native';
|
||||||
|
|
||||||
|
|
||||||
|
import MyListView from './MyListView'
|
||||||
|
var isPromise = require('is-promise')
|
||||||
|
var REQUEST_URL = 'http://127.0.0.1:3000/users/list';
|
||||||
|
|
||||||
|
export default class RandListView extends Component{
|
||||||
|
|
||||||
|
//初始化。
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
dataSource: new ListView.DataSource({
|
||||||
|
rowHasChanged: (row1, row2) => row1 !== row2,
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount(){
|
||||||
|
this.props.navComponent.setNavItems({
|
||||||
|
title: {
|
||||||
|
component: (
|
||||||
|
<Text style={styles.title}>
|
||||||
|
随机
|
||||||
|
</Text>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
onRefresh(){
|
||||||
|
this.myfetchData();
|
||||||
|
}
|
||||||
|
//数据查询.
|
||||||
|
fetchData(){
|
||||||
|
var page = Math.random() * 1000;
|
||||||
|
page = Math.floor(page);
|
||||||
|
var url = REQUEST_URL + '?page=' + page;
|
||||||
|
return new Promise((resolve, reject)=>{
|
||||||
|
fetch(url)
|
||||||
|
.then((response) => response.json())
|
||||||
|
.catch((error) => {
|
||||||
|
reject(error);
|
||||||
|
})
|
||||||
|
.then((responseData) => {
|
||||||
|
if(responseData){
|
||||||
|
this.setState({
|
||||||
|
dataSource: this.state.dataSource.cloneWithRows(responseData.datas),
|
||||||
|
});
|
||||||
|
resolve(responseData.datas);
|
||||||
|
}else{
|
||||||
|
reject('none');
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
.done();
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
render(){
|
||||||
|
return (
|
||||||
|
<MyListView
|
||||||
|
dataSource={this.state.dataSource}
|
||||||
|
refreshTitle={'随机刷新'}
|
||||||
|
{...this.props}
|
||||||
|
fetchData={this.fetchData.bind(this)}/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
container: {
|
||||||
|
flex:2,
|
||||||
|
flexDirection: 'column',
|
||||||
|
justifyContent: 'center',
|
||||||
|
alignItems: 'center',
|
||||||
|
backgroundColor: 'White',
|
||||||
|
},
|
||||||
|
welcome: {
|
||||||
|
fontSize: 20,
|
||||||
|
textAlign: 'center',
|
||||||
|
margin: 10,
|
||||||
|
},
|
||||||
|
instructions: {
|
||||||
|
textAlign: 'center',
|
||||||
|
color: '#333333',
|
||||||
|
marginBottom: 5,
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
fontSize: 15,
|
||||||
|
marginBottom: 8,
|
||||||
|
marginTop: 10,
|
||||||
|
marginLeft: 4,
|
||||||
|
marginRight: 4,
|
||||||
|
textAlign: 'left',
|
||||||
|
},
|
||||||
|
year: {
|
||||||
|
textAlign: 'center',
|
||||||
|
},
|
||||||
|
rightContainer: {
|
||||||
|
flex: 1,
|
||||||
|
},
|
||||||
|
topContainer:{
|
||||||
|
flex:1,
|
||||||
|
height : 30,
|
||||||
|
backgroundColor: 'LightGray',
|
||||||
|
},
|
||||||
|
thumbnail: {
|
||||||
|
width: 400,
|
||||||
|
height: 200,
|
||||||
|
},
|
||||||
|
listView: {
|
||||||
|
paddingTop: 0,
|
||||||
|
marginBottom: 44,
|
||||||
|
backgroundColor: 'LightGray',
|
||||||
|
},
|
||||||
|
navItem: {
|
||||||
|
flex: 1,
|
||||||
|
justifyContent: 'center',
|
||||||
|
alignItems: 'center'
|
||||||
|
},
|
||||||
|
// top{
|
||||||
|
// height:60,
|
||||||
|
// flex: 1,
|
||||||
|
// },
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = RandListView;
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
|
//详情页面
|
||||||
'use strict';
|
'use strict';
|
||||||
import React, {
|
import React, {
|
||||||
AppRegistry,
|
AppRegistry,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
//3个主界面的listview
|
//随机页面
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
import React, {
|
import React, {
|
||||||
|
|||||||
Reference in New Issue
Block a user