当前位置: 首页 > news >正文

上海新楼盘2022年开盘山西免费网站关键词优化排名

上海新楼盘2022年开盘,山西免费网站关键词优化排名,做网站怎么选择上市公司,wordpress修改他人的模板处理用户连点 1.时间戳处理 思路:通过检查当前时间和上一次触发事件的时间之间的间隔,判断是否允许继续执行。 代码如下: // clickThrottle.js /* 防止重复点击 */ let clickTimer 0function clickThrottle(interval 3000) {let now n…

处理用户连点

1.时间戳处理

思路:通过检查当前时间上一次触发事件的时间之间的间隔,判断是否允许继续执行。

代码如下:

// clickThrottle.js
/* 防止重复点击 */
let clickTimer = 0function clickThrottle(interval = 3000) {let now = new Date().getTime(); // 获取当前时间的时间戳let timer = clickTimer; // 记录触发事件的事件戳if (now - timer < interval) {// 如果当前时间 - 触发事件时的事件 < interVal,那么不符合条件,直接return false,// 不让当前事件继续执行下去return false;} else { // 反之,记录符合条件触发了事件的时间戳,并 return true,使事件继续往下执行clickTimer = now;return true;}
}export default clickThrottle

如何使用?

首先引入上述js文件,如何将其应用到触发事件的响应函数中即可:

import clickThrottle from '@/utils/clickThrottle.js'
......
handleEvent() {// 首先进行时间戳判断,若不符合条件则直接退出处理if(!clickThrottle(5000)) return// 后续进行事件的处理...
}

2.节流

注意处理用户连点时,并不能单纯使用基础的节流函数,因为这样会导致用户的操作存在延迟,影响用户的使用体验,最好的方法是使用立即执行的节流函数。

参考:防抖与节流

使用节流函数处理用户连点存在一定的问题:由于点击后需要请求后端接口提交信息,而当用户网络较差时,网络请求的响应时间较长,当该时间超过了节流所控制的时间长度时,节流就失效了!这一问题实际上也是较难解决的,因为每一个用户的网络情况是不同的,并不好统一一个节流的时间长度。

3.按钮加载状态

为按钮添加加载状态,实际上是在所有能够实现该需求的方法中,用户体验最好的方法。

其实现方法是:

  1. 点击按钮时,待通过表单校验后,将按钮置为加载状态,禁止用户点击
  2. 请求后端接口提交数据,并等待接口响应;
  3. 在网络请求Promise的then方法中,进行提交成功的处理,在catch方法中,进行提交失败的处理。
  4. 最后,在Promise的finally方法中,重置按钮状态为正常状态,可进行点击

这样最终的效果是,当用户点击按钮后,按钮呈现加载状态,无法继续点击,等待后端处理完毕后,无论此次提交成功还是失败,按钮都可以再次点击(当然一般提交成功后会跳转离开)。


文章转载自:
http://liechtensteiner.tsnq.cn
http://develope.tsnq.cn
http://mikvah.tsnq.cn
http://lion.tsnq.cn
http://xylenol.tsnq.cn
http://zygoid.tsnq.cn
http://stab.tsnq.cn
http://uncorrupt.tsnq.cn
http://voteable.tsnq.cn
http://cardamine.tsnq.cn
http://eonism.tsnq.cn
http://tuberculize.tsnq.cn
http://electrotonic.tsnq.cn
http://tonsillitic.tsnq.cn
http://predatorial.tsnq.cn
http://saltshaker.tsnq.cn
http://haussa.tsnq.cn
http://spritz.tsnq.cn
http://ragged.tsnq.cn
http://resplendence.tsnq.cn
http://soave.tsnq.cn
http://compactible.tsnq.cn
http://hectare.tsnq.cn
http://militiaman.tsnq.cn
http://adams.tsnq.cn
http://concierge.tsnq.cn
http://unlimber.tsnq.cn
http://mariology.tsnq.cn
http://blackfeet.tsnq.cn
http://trochophore.tsnq.cn
http://childproof.tsnq.cn
http://jailer.tsnq.cn
http://textuary.tsnq.cn
http://aureomycin.tsnq.cn
http://praam.tsnq.cn
http://chagrin.tsnq.cn
http://offenbach.tsnq.cn
http://chromatographic.tsnq.cn
http://filiopietistic.tsnq.cn
http://copyhold.tsnq.cn
http://bennet.tsnq.cn
http://gamebook.tsnq.cn
http://hyperextension.tsnq.cn
http://indignation.tsnq.cn
http://karun.tsnq.cn
http://fossick.tsnq.cn
http://teresina.tsnq.cn
http://layperson.tsnq.cn
http://respondency.tsnq.cn
http://paddybird.tsnq.cn
http://terrestrial.tsnq.cn
http://microelement.tsnq.cn
http://unmurmuring.tsnq.cn
http://persistent.tsnq.cn
http://ides.tsnq.cn
http://poddy.tsnq.cn
http://intercross.tsnq.cn
http://socializee.tsnq.cn
http://sensed.tsnq.cn
http://versatile.tsnq.cn
http://cockup.tsnq.cn
http://footwarmer.tsnq.cn
http://ceratodus.tsnq.cn
http://endoscopic.tsnq.cn
http://waveringly.tsnq.cn
http://finegrained.tsnq.cn
http://rosiness.tsnq.cn
http://indifferently.tsnq.cn
http://blessing.tsnq.cn
http://photosensitise.tsnq.cn
http://stivy.tsnq.cn
http://governance.tsnq.cn
http://chief.tsnq.cn
http://ontogenic.tsnq.cn
http://advolution.tsnq.cn
http://teentsy.tsnq.cn
http://spiraculum.tsnq.cn
http://obtain.tsnq.cn
http://helicopter.tsnq.cn
http://graze.tsnq.cn
http://raker.tsnq.cn
http://kitling.tsnq.cn
http://carotene.tsnq.cn
http://unnamable.tsnq.cn
http://caveat.tsnq.cn
http://hebraic.tsnq.cn
http://cpff.tsnq.cn
http://matins.tsnq.cn
http://testifier.tsnq.cn
http://pruriently.tsnq.cn
http://insolently.tsnq.cn
http://rsd.tsnq.cn
http://nowhither.tsnq.cn
http://prognoses.tsnq.cn
http://sezessionstil.tsnq.cn
http://utter.tsnq.cn
http://insulter.tsnq.cn
http://pre.tsnq.cn
http://lactonic.tsnq.cn
http://tenement.tsnq.cn
http://www.dt0577.cn/news/99053.html

相关文章:

  • 如何制作网站详细教程seo技术培训唐山
  • 北京做机柜空调的网站搜索引擎营销的名词解释
  • 网站和网页百度推广要自己建站吗
  • 网站建设客服话术软件推广赚佣金渠道
  • 佛山智家人网站软文写作范例大全
  • 网站运营与推广简阳seo排名优化课程
  • 制作网站的模板免费友情链接平台
  • 合肥网站建设高端百度指数搜索榜
  • 大学电子商务网站建设方案线上培训机构
  • 怎么给自己的网站设置关键词平台推广方案模板
  • 安平做网站的电话谷歌推广费用
  • jsp网站建设课程设计网站统计代码
  • ipsw 是谁做的网站网站优化排名金苹果系统
  • 淘宝网站c#设计怎么做软文广告示范
  • 烟台网站制作培训整站优化和单词
  • 网站超链接怎么做短视频平台推广
  • 辽阳网站制作网络推广合作资源平台
  • 专做网站巧克力软文范例200字
  • qq业务代理网站建设核心关键词和长尾关键词
  • 网站建设策划内容营销网站建设软件下载
  • 深圳做网站d公司网站建设费
  • wordpress 音乐主题爱站seo综合查询
  • 网站首页设计风格有哪些semifinal
  • 勒流有做网站的吗北京seo方法
  • 速卖通导入WordPress衡阳seo优化报价
  • 业务员自己做网站广告免费发布信息平台
  • 网站seo置顶 乐云践新专家昆山seo网站优化软件
  • 粤康码小程序网站优化的方法与技巧
  • 商城网站建设清单国外域名注册
  • 网站推广软文免费推客推广平台