- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 React Native(或任何 JS 框架)的新手,我正在尝试制作一个简单的点击游戏,一旦你点击蓝色方 block ,它就会随机呈现在不同的位置,然后你点击再次,依此类推。到目前为止,这是我的代码:
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
TouchableOpacity,
View
} from 'react-native';
import styles from './src/styles/style';
export default class App extends Component<{}> {
constructor(props) {
super();
this.state = {
showStartButton: true, // change back to true
score: 0
}
}
startGame() {
this.setState({
showStartButton: !this.state.showStartButton
});
this.renderFirstStage();
}
score() {
this.setState({
showStartButton: !this.state.showStartButton,
score: score+1
});
}
renderStartButton() {
return (
<TouchableOpacity style={styles.startButton} onPress={()=>this.startGame()}>
<Text style={styles.startButtonText}>START</Text>
</TouchableOpacity>
);
}
renderWhiteBox() {
return (
<View style={{flex: 1, backgroundColor: 'white'}} />
);
}
renderBlueBox() {
return (
<View style={{flex: 1, backgroundColor: 'blue'}} />
);
}
renderFirstStage() {
var blueColNum = Math.floor(Math.random() * 6);
var blueRowNum = Math.floor(Math.random() * 4);
var col1 = ['white', 'white', 'white', 'white', 'white', 'white'];
var col2 = ['white', 'white', 'white', 'white', 'white', 'white'];
var col3 = ['white', 'white', 'white', 'white', 'white', 'white'];
var col4 = ['white', 'white', 'white', 'white', 'white', 'white'];
if (blueRowNum == 0)
col1[blueColNum] = 'blue';
else if (blueRowNum == 1)
col2[blueColNum] = 'blue';
else if (blueRowNum == 2)
col3[blueColNum] = 'blue';
else if (blueRowNum == 3)
col4[blueColNum] = 'blue';
return (
<View style={{flex: 1, flexDirection: 'row'}}>
<View style={{flex: 1}}>
<View style={styles.scoreBoard}><Text style={styles.timerText}>Time: {blueRowNum}</Text></View>
{col1.map(function(el){
if (el == 'blue')
return (
<TouchableOpacity style={{flex: 1, backgroundColor: el}} onPress={()=>this.score()} />
);
else
return (
<View style={{flex: 1, backgroundColor: el}} />
);
})}
</View>
<View style={{flex: 1}}>
<View style={{flex: 1, backgroundColor: 'gray'}} />
{col2.map(function(el){
if (el == 'blue')
return (
<TouchableOpacity style={{flex: 1, backgroundColor: el}} onPress={()=>this.score()}/>
);
else
return (
<View style={{flex: 1, backgroundColor: el}} />
);
})}
</View>
<View style={{flex: 1}}>
<View style={{flex: 1, backgroundColor: 'gray'}} />
{col3.map(function(el){
if (el == 'blue')
return (
<TouchableOpacity style={{flex: 1, backgroundColor: el}} onPress={()=>this.score()} />
);
else
return (
<View style={{flex: 1, backgroundColor: el}} />
);
})}
</View>
<View style={{flex: 1}}>
<View style={styles.scoreBoard}><Text style={styles.timerText}>Score: {this.state.score}</Text></View>
{col4.map(function(el){
if (el == 'blue')
return (
<TouchableOpacity style={{flex: 1, backgroundColor: el}} onPress={()=>this.score()} />
);
else
return (
<View style={{flex: 1, backgroundColor: el}} />
);
})}
</View>
</View>
);
}
render() {
return (
<View style={styles.container}>
{this.state.showStartButton ? this.renderStartButton() : null}
{!this.state.showStartButton ? this.renderFirstStage() : null}
</View>
);
}
}
所以这是很多代码,但为了上下文的缘故,我想将它们全部包含在内。无论如何,我遇到的问题是我的 renderFirstStage() 函数。在返回语句中看到我正在调用 onPress 事件处理程序来运行函数 this.score 吗?好的,所以当我运行程序并点击其中一个 TouchableOpacities 时,我收到一条错误消息:_this5.score 不是函数... _this5.score 未定义。我最好的猜测是,因为我从 JSX 中的 JS 代码中调用 onPress={()=>this.score},所以我无法访问 App 类中的方法。所以我认为范围有问题,或者可能不是,我不知道。即使我的直觉是正确的,我也不知道如何纠正它。如何从我的 TouchableOpacity 组件中调用 score 方法?我尝试过的任何东西似乎都不适合我......
注意:我在 MacBook pro 上运行 iPhone 7 模拟器。
最佳答案
是的,它存在范围问题,您需要在构造函数
中将函数
与this
上下文绑定(bind)
constructor(props) {
super();
this.state = {
showStartButton: true, // change back to true
score: 0
}
this.renderFirstStage = this.renderFirstStage.bind(this);
}
或者您可以简单地使用call
立即调用函数
并将其与this
绑定(bind)
{!this.state.showStartButton ? this.renderFirstStage.call(this) : null}
关于javascript - React Native touchableopacity onpress 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48535182/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!