- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 React 组件,我想向其添加一个名为 doMath
的简单数学函数,该函数使用属性值。
class MyClass extends Component {
constructor( props ) {
super( ...arguments );
}
render() {
const { attributes } = this.props; /* attributes passed from parent component */
const { width, height } = attributes;
return (
/* render something using the width and height values */
)
}
}
我可以通过以下方式添加 doMath
函数...
类内部:
class MyClass extends Component {
constructor( props ) {
super( ...arguments );
}
doMath() {
const { width, height } = this.props.attributes;
const result = 100 / (width / height);
return result;
}
render() {
const { attributes } = this.props; /* attributes passed from parent component */
const { width, height } = attributes;
return (
doMath();
)
}
}
类外作为常量:
const doMath = (width, height) {
const result = 100 / (width / height);
return result;
}
class MyClass extends Component {
constructor( props ) {
super( ...arguments );
}
render() {
const { attributes } = this.props; /* attributes passed from parent component */
const { width, height } = attributes;
return (
doMath(width, height);
)
}
}
内部渲染为常量:
class MyClass extends Component {
constructor( props ) {
super( ...arguments );
}
render() {
const { attributes } = this.props; /* attributes passed from parent component */
const { width, height } = attributes;
const doMath = (width, height) {
const result = 100 / (width / height);
return result;
}
return (
doMath(width, height);
)
}
}
似乎我也可以将它添加到 componentDidMount
或 componentDidUpdate
据我所知,将它添加到 render()
中是不好的做法,但它似乎在任何地方都有效。这种情况下的最佳做法是什么?
最佳答案
第三种方法肯定不行。在 render
方法中添加该函数将创建一个新的 doMath
函数每次您的组件重新渲染,这不是一种高效的做法东西。
如果您确定要为这个特定组件使用 doMath
函数,我建议您在组件的模块中定义它而不导出它。所以我会选择第二种方式。
如果此函数仅依赖于width
和height
,那么最好将它放在组件类之外。否则,如果您觉得它可能依赖于更多的 state
,您可以将它放在类中,这样您就不会被迫传递组件的状态。
结论:根据要传递给 doMath
函数的数据量,您可以在类内部或外部创建它;但永远不会在 render
方法中。
编辑: 我忘记提及的是使用 static
方法。基本上,如果您没有设置方法 static
,它将为组件的每个实例创建,并且能够使用其他类成员:
(A) 如果方法不是static
:
class MyComponent extends React.Component {
/* private */ doMath() {
// You have access to this particular instance and its state
const {width, height} = this.state;
}
}
(B) 如果方法是静态的:
class MyComponent extends React.Component {
/* private */ static doMath(width, height) {
// do something with them
// no access to state or the component's instance
}
render() {
const {width, height} = this.state;
const result = MyComponent.doMath(width, height);
// render something
}
}
(C) 为了完整起见,我们还要在类外定义函数:
function doMath(width, height) {
// do magic
return result;
}
class MyComponent extends React.Component {
render() {
const {width, height} = this.state;
const result = doMath(width, height);
// render something
// use result
}
}
// emphasize export
module.exports = MyComponent;
比较
当使用诸如 TypeScript 之类的东西时,方法 (B) 和 (C) 基本上会给出相同的结果:您可以通过指定 static
方法 private
来隔离功能。但是,在使用 JavaScript 时,我更喜欢 (C),因为如果我这样做
const MyComponent = require('/path/to/MyComponent');
MyComponent.doMath(); // undefined
我不能使用 doMath
函数,因为我不应该这样做。使用这两种方法,您需要将所需数据作为参数传递给函数/方法(即您无权访问组件实例的内部状态)。
现在对于 (A),将为组件的每个实例创建该方法(如果您有很多实例,可能需要考虑)。您将有权访问 this
(因此可以访问组件的内部状态)并且您不必将任何内容作为参数传递,如果您不确定该方法需要多少数据,这可能会很方便。
我希望你能从这个解释中得出结论。
关于javascript - React where 在组件中添加一个简单的数学函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54177613/
Based on Deep Learning (2017, MIT) book. 本文基于Deep Learning (2017, MIT),推导过程补全了所涉及的知识及书中推导过程中跳跃和省
因此,我需要一种方法来弄清楚如何获得5个数字,并且当您将它们中的任意两个相加时,将得出一个总和,您只能通过将这两个特定的数字相加而得到。 这是我正在谈论的示例,但有3个数字: 1个 3 5 1 + 3
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
如何将 a 和 b 之间的数字线性映射到 c 和 d 之间。 也就是说,我希望 2 到 6 之间的数字映射到 10 到 20 之间的数字...但我需要广义的情况。 我的脑子快炸了。 最佳答案 如果您的
嘿,我有一个方程式,我需要弄清楚它是基于图表的数学,其中图表上有两个点,需要获取其余值: 我正在构建一个 javascript 页面,它获取图表上的两个点,但需要吐出图表上的任何位置。 它用于根据了解
有谁知道如何用 Doxygen 得到实复场或射影平面的符号,i.o.w 符号,如 IR、IC、IP 等? 例如,我尝试了\f$\field{R}\f$,但无法识别。 非常感谢您的帮助,G. 最佳答案
我正在使用 Segment to Segment 最接近方法,该方法将输出两个长度段之间的最近距离。每个段对应一个球体对象的起点和终点。速度只是从一个点到另一个点。 即使没有真正的碰撞,最近的方法也可
我有一个 arduino 连接到 Stradella 系统钢琴 Accordion 。我在左手和弦的 12 个音符中的每一个上都有光学传感器。当我弹奏和弦时,它会触发三个传感器。如果我想让合成器演奏和
我正在开发一个具有一些简单功能的新包。现在我可以使用已经存在的“math-vectors”库中的函数;特别是“插值”和“反转”。如何在我的新包中使用这些?编写 y:=reverse(...) 显然是不
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Integer division in JavaScript 希望这是一个简单的问题,基本上我需要这样做: 分隔线
我有一张表格,上面有学校类(class)。此表单上可以有任意数量的类,每个类有 2 个字段。书本费和学费。 我有一个名为总计的第三个字段,当他们在其他字段中输入成本时,我想更新该字段。 这就是我的设置
今天早些时候我问了一个类似的问题,结果发现我只是数学很烂,因为我也无法解决这个问题。 我通过宽度/高度计算屏幕比例。我需要一个函数来将结果数字转换为新的比例。 例如 function convertN
我有一个起始数字,因此必须仅在开始循环时将该数字乘以一个因子,然后将结果乘以另一个因子的 X 倍,然后必须将循环乘以 Y 次,最后我需要总金额...我认为最好查看数字来了解我需要什么 例如,如果我从数
现在我用 JAVA 遇到了一些问题,但不记得如何获取坐标系之间的长度。 例如。A 点 (3,7)B点(7,59) 我想知道如何计算a点和b点之间的距离。非常感谢您的回答。 :-) 最佳答案 A = (
我有两种类型的文本输入,积极的和可疑的。在将输入到这两种类型的输入中的所有数字相加后,我需要显示多组这些输入的总数。例如:2 个阳性 + 2 个可疑 = 总计:4 然后,我需要从总数中找出积极与可疑的
我正在尝试将输入金额乘以 3.5%,任何人都可以给我任何想法如何做到这一点吗? $("#invest_amount").keyup(function() { $('#fee').va
有谁知道返回a的最大数的Math方法 给定的位数。 例如,使用1位数字的最大数字是9,2是99,3是999,4是9999......等等。 使用字符串很容易实现,但这并不完全 我在找什么。 pri
我是 Knockout 的新手,但仍对它一头雾水,我想知道如何使用两个 KO 变量进行简单的数学运算(加法和乘法)。 此刻我有: self.popInc1 = ko.observable('0.3')
我在谷歌地图应用程序中有以下内容,并希望显示转换为英尺的海拔高度,但如何向上/向下舍入到最接近的数字? (消除小数点后的数字)我尝试了 number.toFixed(x) 方法,但似乎什么也没做。 f
我最近开始使用 JavaScript 编写小型 Canvas 游戏,并试图全神贯注于 Vector 2d 数学。我了解 Vectors 的基础知识(比如它们代表 2d 空间中具有方向的点,您可以对它们
我是一名优秀的程序员,十分优秀!