每次单击按钮时更新另一个组件中的变量值
update variable value in another component every time the button is clicked
我正在使用 reactJS 中的 react-draft-wysiwyg 制作一个文本编辑器。单击 editor.js 文件中的按钮后,我想在 mobile.js 文件中设置变量 value 的更新值。现在我只是在点击 editor.js 文件中更新它。但是在下面的代码中,每次点击都不会更新该值。单击按钮时如何更新 mobile.js 文件中 value
的值。
在 Mobile
组件中,您需要将 {this.value}
编辑为 {value}
以及从 export const Mobile = () => {
编辑为 export const Mobile = ({ value }) => {
。
问题是您没有从 Mobile
的父级读取 value
道具,而是试图读取 this.value
函数中的 undefined
组件。
我正在使用 reactJS 中的 react-draft-wysiwyg 制作一个文本编辑器。单击 editor.js 文件中的按钮后,我想在 mobile.js 文件中设置变量 value 的更新值。现在我只是在点击 editor.js 文件中更新它。但是在下面的代码中,每次点击都不会更新该值。单击按钮时如何更新 mobile.js 文件中 value
的值。
在 Mobile
组件中,您需要将 {this.value}
编辑为 {value}
以及从 export const Mobile = () => {
编辑为 export const Mobile = ({ value }) => {
。
问题是您没有从 Mobile
的父级读取 value
道具,而是试图读取 this.value
函数中的 undefined
组件。