- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个基于类的组件,我正在尝试重构它以使用钩子(Hook),但遇到了一些我无法弄清楚的麻烦。我有一个调查问题组件,它将根据创建的问题类型显示一个下拉框、复选框等。但是,当出现新问题时,我似乎无法弄清楚在哪里可以重新初始化基础值。任何帮助是极大的赞赏。我只显示复选框组件功能。
const CheckboxButton = ({ onClick, checked, label }) => {
return (
<TouchableOpacity
style={checkboxStyles.wrapper}
activeOpacity={1}
onPress={() => {
if (typeof onClick === 'function') {
onClick(!checked);
}
}}
>
<View
style={[
checkboxStyles.checkbox,
checked ? checkboxStyles.checkboxChecked : null
]}
>
{checked ? <View style={checkboxStyles.checkboxCheckedDot} /> : null}
</View>
<Text style={checkboxStyles.label}>{label}</Text>
</TouchableOpacity>
);
};
const QuestionCheckboxes = ({ question, onChange }) => {
const [checkedIndex, setCheckedIndex] = useState([]);
const _onChange = checked => {
const options = question.options;
let values = [];
for (let i in checked) {
if (checked[i]) {
values.push(options[i]);
}
}
if (typeof onChange === 'function') {
onChange(values.length ? values : null);
}
};
let items = [];
for (let i = 0; i < question.options.length; ++i) {
const option = question.options[i];
items.push(
<CheckboxButton
key={i}
label={option}
checked={checkedIndex[i]}
onClick={value => {
let newCheckedIndex = [...checkedIndex];
newCheckedIndex[i] = value;
setCheckedIndex(newCheckedIndex);
//need to use newCheckedIndex for onChange b/c checked index has been set
_onChange(newCheckedIndex);
}}
/>
);
}
return <View>{items}</View>;
};
const QuestionView = ({ index, question, onChange }) => {
const questionComponents = {
dropdown: QuestionDropdown,
radios: QuestionRadios,
checkboxes: QuestionCheckboxes,
stars: QuestionStars
};
if (typeof questionComponents[question.type] !== 'function') {
return null;
}
const QuestionComponent = questionComponents[question.type];
return (
<View>
<Text style={styles.questionTitle}>
{index}. {question.title}
</Text>
<View style={styles.questionComponent}>
<QuestionComponent question={question} onChange={onChange} />
</View>
</View>
);
};
const SurveyQuestion = ({ navigation }) => {
const [survey, setSurvey] = useState(navigation.getParam('item'));
const questionsCount = survey.entity.data.length;
const [current, setCurrent] = useState(0);
const [index, setIndex] = useState(1);
const [progress, setProgress] = useState(index / questionsCount);
const [answers, setAnswers] = useState([]);
_nextQuestion = async () => {
setProgress(index / questionsCount);
if (typeof answers[current] === 'undefined' || answers[current] === null) {
// GeneralActions.notify('Please answer this question.');
console.log('did not answer question');
return;
}
if (current === survey.entity.data.length - 1) {
console.log('getting ready to send to server');
try {
const response = await axios.post('/request', {
id: survey.id,
key: null,
data: answers
});
} catch (err) {
console.log('error posting survey: ', err);
}
return null;
}
setCurrent(current + 1);
setIndex(index + 1);
};
return (
<ScrollView style={styles.container}>
<View style={styles.container}>
<View style={styles.questions}>
<View style={styles.progressbar}>
<ProgressBar
progress={progress}
width={null}
height={20}
borderRadius={10}
borderWidth={0}
unfilledColor='#f5f5f5'
/>
</View>
<Text style={styles.questionsInfo}>
{index} / {questionsCount}
</Text>
</View>
<View style={styles.questionWrapper}>
<QuestionView
index={index}
question={survey.entity.data[current]}
onChange={value => {
let newAnswers = answers.slice();
newAnswers[current] = value;
setAnswers(newAnswers);
}}
/>
</View>
<View style={styles.action}>
<TouchableOpacity
style={styles.buttonPrimary}
activeOpacity={0.7}
onPress={_nextQuestion}
>
<Text style={styles.button}>
{progress === 1 ? 'FINISH' : 'NEXT'}
</Text>
</TouchableOpacity>
</View>
</View>
</ScrollView>
);
};
目前,当我从一个问题转到另一个问题时,旧的答案将继续存在。例如,我不知道在哪里可以将checkedIndex重新初始化回[]。
const [checkedIndex, setCheckedIndex] = useState([]);
我尝试将 setCheckedIndex([]) 放在几个区域中,但重新渲染次数过多。
最佳答案
这可能是因为它在每次渲染之间重用相同的 QuestionComponent
组件。我无法测试它,但我会尝试添加一个唯一的键来向 React 提供“提示”,即只要键发生变化,它就应该创建一个新组件。
<QuestionComponent
key={question.uniqueIdOrSomething}
question={question}
onChange={onChange}
/>;
其中 uniqueIdOrSomething
可以是问题 id
或问题 text
(任何可以唯一标识问题的内容)。
通常,key
在列表中使用,因此如果顺序发生变化,React 可以重用组件(性能优化)。然而,它也可以用来告诉 React 这个组件是不同的,并且它不应该重用现有组件并重新实例化它。对于您来说,这将删除现有状态并为您提供新的默认值。我认为这是使用 key
的正确用例,但要小心过度使用这种方法(添加 key
属性),因为它可能会掩盖其他问题。
有关 key
属性的更多详细信息:https://reactjs.org/docs/lists-and-keys.html
关于javascript - React hooks 帮助从基于类的组件进行重构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57764745/
我有这个问题: 我们声称对 float 使用相等测试是不安全的,因为算术运算会引入舍入错误,这意味着两个应该相等的数字实际上并不相等。 对于这个程序,您应该选择一个数字 N,并编写一个程序来显示 1
为什么这个脚本的输出是 5 而不是 8 ? 我认为 -- 意味着 -1 两次。 var x = 0; var y = 10; while ( x
我现在可以从 cmd 窗口中执行的 FFmpeg 过程中读取最后一行。 使用脚本主机模型对象引用此源。 Private Sub Command1_Click() Dim oExec
使用 vlookup,当匹配发生时,我想从匹配发生的同一行显示工作表 2 中 C 列的值。我想出的公式从 C 列表 2 中获取值,但它从公式粘贴在表 3 上的行中获取,而不是从匹配发生的位置获取。 这
我在破译 WCF 跟踪文件时遇到了问题,我希望有人能帮助我确定管道中的哪个位置发生了延迟。 “Processing Message XX”的跟踪如下所示,在事件边界和传输到“Process Actio
我有四个表,USER、CONTACT、CONACT_TYPE 和 USER_CONTACT USER_CONTACT 存储用户具有填充虚拟数据的表的所有联系人如下 用户表 USER_ID(int)|
以下有什么作用? public static function find_by_sql($sql="") { global $database; $result_set = $data
我正在解决 JavaBat 问题并且对我的逻辑感到困惑。 这是任务: Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat,
我正在研究一些 Scala 代码,发现这种方法让我感到困惑。在匹配语句中,sublist@ 是什么?构造?它包含什么样的值(value)?当我打印它时,它与 tail 没有区别,但如果我用尾部替换它,
我正在使用以下代码自行缩放图像。代码很好,图像缩放也没有问题。 UIImage *originImg = img; size = newSize; if (originImg.size.width >
Instruments 无法在我的 iPad 和 iPhone 上启动。两者都已正确配置,我可以毫无问题地从 xcode 调试它们上的代码,但 Instruments 无法启动。 我听到的只是一声嘟嘟
我想用 iPhone 的 NSRegularExpression 类解析此文本: Uploaded652.81 GB 用于摘录上传和652.81文本。 最佳答案 虽然我确实认为 xml 解析器更适合解
我找到了 solution在 Stackoverflow 上,根据过滤器显示 HTML“li”元素(请参阅附件)。本质上基于 HTML 元素中定义的 css 类,它填充您可以从中选择的下拉列表。 我想
这是一个简单的问题,但我是在 SQL 2005 中形成 XML 的新手,但是用于形成如下所示表中的 XML 的最佳 FOR XML SQL 语句是什么? Column1 Column2 -
我在 www.enigmafest.com 有一个网站!您可以尝试打开它!我面临的问题是,在预加载器完成后,主页会出现,但其他菜单仍然需要很长时间才能加载,而且声音也至少需要 5 分钟! :( 我怎样
好吧,我正在尝试用 Haskell 来理解 IO,我想我应该编写一个处理网页的简短小应用程序来完成它。我被绊倒的代码片段是(向 bobince 表示歉意,但公平地说,我并不想在这里解析 HTML,只是
如何使用背景页面来突出显示网站上的某个关键字,无论网站是什么(谷歌浏览器扩展)?没有弹出窗口或任何东西,它只是在某人正在查看的网站上编辑关键字。我以前见过这样的,就是不明白怎么做!谢谢你的帮助。 最佳
我是 Javascript 新手,需要一些帮助。 先看图片: . 积分预测器应用程序。 基本上当用户通过单选按钮选择获胜团队时它应该在积分栏中为获胜队添加 10 分,并且并根据得分高的球队自动对表格进
这是我的情况 - 我要发送一份时事通讯,我试图做的是,当用户单击电子邮件中的链接时,它会重定向到我的网页,然后会弹出一个灯箱,显示视频。我无法在页面加载时触发灯箱,因为您可以在查看灯箱之前转到同一页面
我有这个代码。 ¿Cuanto es ? Ir 我想获取用户输入的“验证码”值。我尝试这个但行不通。有什么帮助吗? var campo = d
我是一名优秀的程序员,十分优秀!