- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常简单的 React 页面,嵌入了下载按钮:
<button
type='button'
className='button'
onClick={this._downloadArchive}
style={{width: '100%'}}
>
<div style={styles.archiveButton}>
<div>Download</div>
<div>{'archive.zip'}</div>
</div>
</button>
以及相应的处理程序:
_downloadArchive = () => {
let filename = 'archive.zip';
let url = '/beta/archive32?filename=' + filename + screenDetails;
window.open(url)
};
在桌面浏览器中,它可以正常工作,但在所有移动浏览器中,处理程序被调用多次(3-4,取决于设备和浏览器),调用之间有 100-300 毫秒的延迟 - 我可以在后端日志中看到它。同时,移动浏览器仅下载该文件一次。如何防止此类行为?
尝试使用 onTouchEnd 事件(检测移动客户端) - 结果相同
最佳答案
你能用 JSON.parse 将文本响应解析为 json
关于javascript - React : in mobile browsers button onClick hadler fires multiple times. 桌面版没问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58898238/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!