以下代码生成一行10个方格,其中包含随机数。我试图以某种方式使它成为10行×10列的网格,但我被困在这里。我想将行中的列限制为10.因此,如果var限制为40,则会创建4行乘10列。 60将创建6行乘10列等
import React, { Component } from 'react';
import { View, Text, TouchableOpacity } from 'react-native';
import { connect } from 'react-redux';
import { Decrease, Increase, GetScore } from '../actions';
import { CardSection, Square } from './common';
class TableGenerator extends Component {
clickable(sq) {
this.props.Decrease(sq);
console.log(this.props.score);
}
generateRandom() {
// Random number generator
function* rand() {
while (true) {
yield Math.floor(Math.random() * 100) + 1;
}
}
const it = rand();
const nums = [];
const limit = 10;
for (let i = 0; i < limit; i++) {
nums.push(it.next().value);
}
return nums.map((sq, i) =>
<TouchableOpacity
key={i}
onPress={() => this.clickable(sq)}
>
<Square style={{ height: 30, width: 30 }}>
{nums[i]}
</Square>
</TouchableOpacity>
);
}
render() {
return (
<View>
<CardSection style={{ justifyContent: 'center' }}>
{this.generateRandom()}
</CardSection>
<CardSection>
<Text>Current Score: </Text>
<Text>{this.props.score}</Text>
</CardSection>
</View>
);
}
}
const mapStateToProps = state => {
return {
score: state.scoreReducer
};
};
export default connect(mapStateToProps, { Decrease, Increase, GetScore })(TableGenerator);
答案 0 :(得分:1)
为偶然发现此帖的其他人发布快速回答。
您可以简单地使用外部容器来限制宽度,以便在填充整行后,子square
将被强制进入下一行。
在外部容器渲染功能中
<Container style={width: '300px'}>
// iterate the and render the children squares
</Container>
在square
组件呈现功能
<Square style={width: '30px', height: '30px', float: 'left', display: 'inline-block'}>
// content
</Square>
我的宠物项目中碰巧有类似的东西,你可以看到它在行动here。