- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在当前状态上增加++1 以产生动画“效果”。它通过 setInterval 来完成此操作。我希望当状态与 maxValue 匹配时停止。
目前,它设置状态并跳转到显然跳过增量的值。
我尝试过重新安排这个函数。我在不同的点设置变量。
我发现 newMax 没有采用当前州年份。我不确定情况是否如此,这让我有点困惑。因此,如果我们能够解决这个问题并尝试实现最终结果。
yearOnChange = e => {
const newMax = Object.values(this.state.locationData[0].year)[0] / 100000;
const currentYear = e.currentTarget.value;
console.log('newMax', newMax, 'currentYear', currentYear)
const startInterval = () => window.setInterval(incrementScale, 10);
const cancelInterval = () => window.clearTimeout(startInterval);
const incrementScale = () => {
if (this.state.elevationScale > newMax) {
return cancelInterval();
}
return this.setState(prevState => ({
year: currentYear,
elevationScale: prevState.elevationScale + 1
}));
};
startInterval();
};
数据集片段/摘录
[ {
"location": "City of London",
"postcode": "EC1A 7BE",
"year": {
"10": "464436",
"11": "442413",
"12": "525723",
"13": "465451",
"14": "625001",
"15": "783667",
"16": "736788",
"17": "820305",
"18": "802129",
"19": "864034",
"95": "91449",
"96": "108999",
"97": "116343",
"98": "124382",
"99": "149143",
"00": "173738",
"01": "284262",
"02": "344239",
"03": "261645",
"04": "326913",
"05": "330363",
"06": "316121",
"07": "360923",
"08": "471861",
"09": "400317"
},
"longitude": -0.100404,
"latitude": 51.51775
},
{
"location": "Barking & Dagenham",
"postcode": "RM9 4TP",
"year": {
"10": "162905",
"11": "163821",
"12": "163899",
"13": "167919",
"14": "184884",
"15": "220070",
"16": "258758",
"17": "282441",
"18": "291548",
"19": "298333",
"95": "50460",
"96": "50828",
"97": "54459",
"98": "57559",
"99": "64532",
"00": "71079",
"01": "82343",
"02": "98713",
"03": "134750",
"04": "150115",
"05": "164484",
"06": "162340",
"07": "176577",
"08": "194235",
"09": "166798"
},
"longitude": 0.127884,
"latitude": 51.539774
}
]
当yearOnChange函数被触发时。如果当前elevationScale状态与newMax不同,则在setInterval上递归加1,直到达到newMax,然后清除setInterval。
如果我遗漏了任何导致此问题的细节,我很乐意编辑此问题。
最佳答案
@davidmitten。刚刚根据您的代码创建了一个示例。我对类型转换和状态管理进行了一些编辑。看看这会有所帮助。并在组件上设置间隔引用来清除间隔。
import React from 'react';
import './App.css';
class App extends React.Component {
state = {
elevationScale: 0,
locationData: [
{
location: "City of London",
postcode: "EC1A 7BE",
year: {
"10": "464436",
"11": "442413",
"12": "525723",
"13": "465451",
"14": "625001",
"15": "783667",
"16": "736788",
"17": "820305",
"18": "802129",
"19": "864034",
"95": "91449",
"96": "108999",
"97": "116343",
"98": "124382",
"99": "149143",
"00": "173738",
"01": "284262",
"02": "344239",
"03": "261645",
"04": "326913",
"05": "330363",
"06": "316121",
"07": "360923",
"08": "471861",
"09": "400317"
},
longitude: -0.100404,
latitude: 51.51775
},
{
location: "Barking & Dagenham",
postcode: "RM9 4TP",
year: {
"10": "162905",
"11": "163821",
"12": "163899",
"13": "167919",
"14": "184884",
"15": "220070",
"16": "258758",
"17": "282441",
"18": "291548",
"19": "298333",
"95": "50460",
"96": "50828",
"97": "54459",
"98": "57559",
"99": "64532",
"00": "71079",
"01": "82343",
"02": "98713",
"03": "134750",
"04": "150115",
"05": "164484",
"06": "162340",
"07": "176577",
"08": "194235",
"09": "166798"
},
longitude: 0.127884,
latitude: 51.539774
}
]
}
yearOnChange = e => {
const newMax = Number.parseInt(Object.values(this.state.locationData[0].year)[0]) / 100000;
const currentYear = e.currentTarget.value;
console.log("newMax", newMax, "currentYear", currentYear);
const startInterval = () => {
this.startInterval = setInterval(incrementScale, 1000);
}
const cancelInterval = () => clearInterval(this.startInterval);
const incrementScale = () => {
console.log("Starting timer");
console.log(this.state.elevationScale, newMax);
if (
this.state.elevationScale >
Number.parseInt(Object.values(this.state.locationData[0].year)[0]) / 100000
) {
cancelInterval();
} else{
console.log("Inside elevation scale");
this.setState({
year: currentYear,
elevationScale: this.state.elevationScale + 1
});
}
};
startInterval();
};
render() {
console.log("Rendering");
return <button onClick={(e) => this.yearOnChange(e)}>Start</button>
}
}
export default App;
关于javascript - 使用 setInterval 将状态增加 1 除非当前状态匹配或大于最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58097983/
我有一个像 [3,10,4,3,9,15,6,13] 这样的列表,我想找到两个不重叠的系列/序列给出通过取最大-最小值可获得的最大值.它们必须是连续的,因此您不能从 1 中减去项目 3。但是您可以从
我正在尝试创建顶部列,这是几个列行的最大值。 Pandas 有一个方法 nlargest但我无法让它成行工作。 Pandas 也有 max和 idxmax这正是我想做的,但仅限于绝对最大值。 df =
我在使用 Android 时遇到了一点问题。 我有我的 GPS 位置,明确的经纬度,以及以米为单位的搜索射线(例如 100 米),可以吗? 想象一下我在射线形成的圆心的位置,我会知道如何在 Andro
假设我有一组最小值和最大值。我想要一个数据结构,在给定外部值的情况下,它会最有效地为我提供值 >= 最小值、值 = 最小值和值 <= 最大值?,我们在Stack Overflow上找到一个类似的问题:
我有以下 Maxima 代码: m:sum(x[i],i,1,N)/N; 然后我想计算 $m^2$。 m2:m^2, sumexpand; 然后我得到双重求和: sum(sum(x[i1]*x[i2]
如何从嵌套字典中获取一个值的最小值/最大值,该字典的缺失值也包含“Nan”? *这是供引用,我找到了一个解决方案,我想我应该在这里分享它,因为我在 stackoverflow 上的任何地方都找不到答案
在千里马 12.04.0 我有一个总和 mysum : sum(u[i]^2, i, 1, N); 现在我区分它 diff(mysum, u[i]); 现在我指定一个定义的索引 i=A 来区分它 at
是否可以根据时间轴获取最小和最大时间戳?我将在 parking 场示例中进行解释。 +---------------------+------+--------+-------+-----------
基本上在几个领域有几个日期 SELECT MAX(MAX(DATE_A),MAX(DATE_B)) from table DATE_A 和 DATE_B 是日期,我基本上想要日期 A 或日期 B 的最
我创建了一个小测试,其中一个 div 根据滚动深度滑动。 我只是想知道怎么设置 A) 起点 (scrolltop = x something) B) 如何设置最大值? var pxlCount = 0
由于达到最大值,clock_gettime() 何时会使用 CLOCK_MONOTONIC 返回一个较小的值?我不是指被描述为错误的小扭曲,而是类似于计数器重置的东西。 它是时间测量的,还是与滴答的绝
我正在使用 angularjs,尤其是 $timeout 服务(setTimeout 的包装器)。它的工作原理如下: angular.module('MyApp').controller('MyCo
是否有可能获得 MinValue - 或 MaxValue未知的 T 型?如 Int其中有 Int.MinValue和 Int.MaxValue ?? 谢谢 最佳答案 正如@mpilquist 在上面
我的数据为 员工: id Name -------- 1 xyz 2 abc 3 qaz Employee_A:(Eid - 员工表,title - 职称表) eid active
我有一个日期和时间行列表,每天有多行。 对于每个唯一日期,我想获取最小和最大时间值。 如何在 Excel v10(又名 2002)中执行此操作? 最佳答案 首先,您可以使用 Excel 函数 MIN(
我有以下 SQL 表 - Date StoreNo Sales 23/4 34 4323.00 23/4 23 5
我可能错过了一些微不足道的东西。我想我还没有完全理解一些基本的交叉过滤器概念 无论如何,我创建了一个带有几个维度的交叉过滤器,并在维度上使用过滤器。我现在想知道过滤值(不是键)的最小值/最大值。 我将
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 9 年前。 Improve t
我在这里错过了什么吗?我希望以下代码段中的 np.max 会返回 [0, 4] ... >>> a array([[1, 2], [0, 4]]) >>> np.max(a,
给定大小为 2 的列表列表,我试图找到通过索引确定最小/最大值的最快方法。目标是确定一系列 XY 点的边界/范围。 子列表未排序(按一个索引排序并不能保证另一个索引已排序)。 目前我正在做以下事情:
我是一名优秀的程序员,十分优秀!