We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dv.transform({ type: "filter",
callback(obj) { const time = new Date(obj.time).getTime(); // !注意:时间格式,建议转换为时间戳进行比较 return time >= ds.state.start && time <= ds.state.end; }
});
// 东八区 时间戳的8小时时区差异 28800000ms 此处需要补全
应该为 return time >= ds.state.start && time <= ds.state.end + 28800000;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
dv.transform({
type: "filter",
});
// 东八区 时间戳的8小时时区差异 28800000ms 此处需要补全
应该为 return time >= ds.state.start && time <= ds.state.end + 28800000;
The text was updated successfully, but these errors were encountered: