我想以特定的方式控制数据框架。
如果有一组dfs (主要是使用' for'功能) 像
'use strict'
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
View,
Image,
Button,
ActivityIndicator,
TouchableOpacity,
} from 'react-native';
import LoginPage from './login';
type Props = {};
export default class App extends Component<Props> {
myPress = () =>{
//This is where the error occurs
this.props.navigator.push({
title: 'log in to YourHope.io',
component: login,
passProps: null,
});
}
render() {
let pic = {
uri: 'https://example.com'
};
let logo = {
uri: 'https://example.com'
}
const companyName = 'Example LLC';
const message = 'cool welcome';
return (
<View style={{ flex: 1, backgroundColor: '#eee', }} >
...
<TouchableOpacity
style={styles.loginScreenButton}
onPress={this.myPress}
underlayColor='#fff'>
<Text style={styles.loginText}>login</Text>
</TouchableOpacity>
</View>
</View>
);
}
}
我想将dfs分组为
'use strict';
import React, { Component } from 'react'
import {
StyleSheet,
Image,
View,
TouchableHighlight,
FlatList,
Text,
} from 'react-native';
export default class LoginPage extends Component<{}> {
render() {
return (
<Text></Text>
);
}
}
首先,我不想手动执行此操作。
其次,我不想使用元组,字典或列表;在分组过程中可以使用临时用法,但最终结果不应该是元组,字典或列表。这是因为我想在其他函数中使用df_group
第三,结合数据帧不是这个问题的重点。
由于