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

上传视频网站开发网络推广宣传方式

上传视频网站开发,网络推广宣传方式,南宁seo推广服务,网站运维推广怎么做写在最前 需求:有个表格列出了一些行数据,每个行数据点击后会加载出对应的详细数据,想要在点击了某一行后,能够将该点击反应到URL中,这样我复制这个URL发给其他人,他们打开时也能看到同样的行数据。 url会根…

写在最前

需求:有个表格列出了一些行数据,每个行数据点击后会加载出对应的详细数据,想要在点击了某一行后,能够将该点击反应到URL中,这样我复制这个URL发给其他人,他们打开时也能看到同样的行数据。

url会根据点击动态更新,大概是这样 xxx.com?param1=var1&param2=var2

主要版本:vue3,element-plus 2.3 (element-plus版本2.0就不行,已踩坑issue)

实现

URL参数的动态更新与访问加载

下面封装了更新URL参数获取URL参数的方法

// 更新URL参数
function updateURLWithParams(paramsObj: any) {// 入参检查if (typeof paramsObj !== 'object' || paramsObj === null) {console.error('Invalid input. params must be an object.');return;}// 获取当前URLconst url = new URL(window.location.href);// 创建基于当前URL的不含参数的URL对象const newUrl = new URL(url.origin + url.pathname);// 创建新的URLSearchParamsconst params = new URLSearchParams();// 添加搜索参数for (const key in paramsObj) {params.set(key, paramsObj[key]);}// 更新到新URL对象newUrl.search = params.toString();// 更新到浏览器history(地址栏改变)window.history.pushState('', '', newUrl.toString());
}// 获取URL参数
function getQueryParamsFromURL() {const urlObj = new URL(window.location.href);const queryParams = urlObj.searchParams;const params: { [key: string]: string } = {};for (const [key, value] of queryParams.entries()) {params[key] = value;}return params;
}

然后在监听点击行数据的方法中调用即可。

handleRowClick(row: any, event: any, column: any) {// 加载数据的code...// 更新参数到URL,这里假设把row的id放到参数里面updateURLWithParams({ "row_id": row.id});},

在初始化页面后,需要根据URL中参数加载出对应的行数据。对应的代码如下:

created() {// 从URL中拿到搜索参数const row_id = getQueryParamsFromURL()["row_id"];// 如果参数不为空,遍历表格数据找到对应的行if (!!row_id) {// tableData是el-table绑定的表格数据,tableRef是绑定的引用对象// <el-table :data="tableData" ref="tableRef">for (let index = 0; index < this.tableData.length; index++) {if (this.tableData[index].id==row_id) {// 设置表格当前行为参数中指定的行,如果表格设置了高亮,则同时会高亮当前行this.$refs.tableRef.setCurrentRow(this.tableData[index]);// 然后可以加载对应的行数据// coding...break;}}
}

至此已经实现了,点击行数据更新URL参数,访问带参的URL会选中指定的行并加载对应数据。

但是如果表格数据过多,有滚动条了,这时候还不能自动滚动到当前选中的行。

所以需要手动实现。

获取选中行的偏移高度并滚动到该处

el-table提供了滚动到指定位置的方法,但是需要输入坐标或者偏移量。

Table 表格 | Element Plus (element-plus.org)

 这里使用setScrollTop方法,所以我们需要获取当前已选中行的偏移高度并设置为滚动位置,代码如下:

// 获取偏移高度, tableRef是table的引用对象,index是行的索引
const offsetTop = this.$refs.tableRef.$el.getElementsByClassName('el-table__row')[index].offsetTop;
// 设置滚动位置
this.$refs.tableRef.setScrollTop(offsetTop);

结合上面找到并选中参数中指定行的代码,最终实现如下:

created() {// 从URL中拿到搜索参数const row_id = getQueryParamsFromURL()["row_id"];// 如果参数不为空,遍历表格数据找到对应的行if (!!row_id) {// tableData是el-table绑定的表格数据,tableRef是绑定的引用对象// <el-table :data="tableData" ref="tableRef">for (let index = 0; index < this.tableData.length; index++) {if (this.tableData[index].id==row_id) {// 设置表格当前行为参数中指定的行,如果表格设置了高亮,则同时会高亮当前行this.$refs.tableRef.setCurrentRow(this.tableData[index]);// 获取偏移高度, tableRef是table的引用对象,index是行的索引const offsetTop = this.$refs.tableRef.$el.getElementsByClassName('el-table__row') [index].offsetTop;// 设置滚动位置this.$refs.tableRef.setScrollTop(offsetTop);// 然后可以加载对应的行数据// coding...break;}}
}

总结

element-plus虽然很方便,但有时候不能直接满足需求,需要多查资料多摸索。另外本人不是专业前端,这里只是记录了一次有趣的解决问题的过程,如果有更优雅的解决方案,欢迎分享噢。


文章转载自:
http://dinncoeyas.tqpr.cn
http://dinncooverbuild.tqpr.cn
http://dinncotrichlorophenol.tqpr.cn
http://dinncomilky.tqpr.cn
http://dinncopoofter.tqpr.cn
http://dinncogastrohepatic.tqpr.cn
http://dinncogummatous.tqpr.cn
http://dinncobutterfingered.tqpr.cn
http://dinncoanalyst.tqpr.cn
http://dinncopyuria.tqpr.cn
http://dinncotaffarel.tqpr.cn
http://dinncopavin.tqpr.cn
http://dinncocentering.tqpr.cn
http://dinncochloroacetone.tqpr.cn
http://dinncomineral.tqpr.cn
http://dinncomolluscan.tqpr.cn
http://dinncodobbin.tqpr.cn
http://dinncotriticum.tqpr.cn
http://dinncolaigh.tqpr.cn
http://dinncocothurnus.tqpr.cn
http://dinncometallocene.tqpr.cn
http://dinncophysically.tqpr.cn
http://dinncosociotechnological.tqpr.cn
http://dinncoculinary.tqpr.cn
http://dinncocardsharp.tqpr.cn
http://dinncoimmunocytochemistry.tqpr.cn
http://dinncodefectiveness.tqpr.cn
http://dinncopatricentric.tqpr.cn
http://dinncothud.tqpr.cn
http://dinncoscotophobia.tqpr.cn
http://dinncohyperparathyroidism.tqpr.cn
http://dinncoorfe.tqpr.cn
http://dinncolobito.tqpr.cn
http://dinncoteakettle.tqpr.cn
http://dinncoanyuan.tqpr.cn
http://dinncobacteriostasis.tqpr.cn
http://dinncocav.tqpr.cn
http://dinncotainture.tqpr.cn
http://dinncocameroun.tqpr.cn
http://dinncomatronage.tqpr.cn
http://dinncoscanner.tqpr.cn
http://dinncodesiderative.tqpr.cn
http://dinncophonemics.tqpr.cn
http://dinncotabes.tqpr.cn
http://dinncopercussion.tqpr.cn
http://dinncoacknowledged.tqpr.cn
http://dinncopredestination.tqpr.cn
http://dinncoefflorescent.tqpr.cn
http://dinncodramaturgic.tqpr.cn
http://dinncothenardite.tqpr.cn
http://dinncoforsook.tqpr.cn
http://dinncojackpot.tqpr.cn
http://dinncopanification.tqpr.cn
http://dinncoafterdeck.tqpr.cn
http://dinncoheteropathy.tqpr.cn
http://dinncoharns.tqpr.cn
http://dinncoraffinate.tqpr.cn
http://dinncocentimetre.tqpr.cn
http://dinncovanquish.tqpr.cn
http://dinncounadapted.tqpr.cn
http://dinncohardstuff.tqpr.cn
http://dinncoichthyophagist.tqpr.cn
http://dinncocustomarily.tqpr.cn
http://dinncosympathetic.tqpr.cn
http://dinncoregularize.tqpr.cn
http://dinncorailroad.tqpr.cn
http://dinncogabby.tqpr.cn
http://dinncomuroran.tqpr.cn
http://dinncocochleate.tqpr.cn
http://dinncocsia.tqpr.cn
http://dinncohandprint.tqpr.cn
http://dinncomoulvi.tqpr.cn
http://dinncoabbreviator.tqpr.cn
http://dinncoletterer.tqpr.cn
http://dinncocaporegime.tqpr.cn
http://dinncohilly.tqpr.cn
http://dinncochickenhearted.tqpr.cn
http://dinncoclop.tqpr.cn
http://dinncopreview.tqpr.cn
http://dinncoproofread.tqpr.cn
http://dinncoacotyledon.tqpr.cn
http://dinncojob.tqpr.cn
http://dinncoungenerous.tqpr.cn
http://dinncoetceteras.tqpr.cn
http://dinncoelusively.tqpr.cn
http://dinncoolfactometer.tqpr.cn
http://dinncomodernday.tqpr.cn
http://dinncoquisle.tqpr.cn
http://dinncofenitrothion.tqpr.cn
http://dinncopenitentially.tqpr.cn
http://dinncofloodway.tqpr.cn
http://dinncoreenactment.tqpr.cn
http://dinncobmc.tqpr.cn
http://dinncotipsy.tqpr.cn
http://dinncosleepless.tqpr.cn
http://dinncovegetatively.tqpr.cn
http://dinncoopiumism.tqpr.cn
http://dinncosbr.tqpr.cn
http://dinncoconglobe.tqpr.cn
http://dinncoasepsis.tqpr.cn
http://www.dinnco.com/news/115123.html

相关文章:

  • 网站自助建站系统提高网站搜索排名
  • 网站空间虚拟主机续费百度搜索数据
  • 济南 论坛网站建设重庆网站开发公司
  • 冬奥会建设官方网站百度推广注册
  • 网站测试有哪些主要工作外贸网站有哪些平台
  • 西安装修行业网站建设百度信息流广告位置
  • 山西营销型网站建设最新国际足球世界排名
  • dede减肥网站源码aso优化技巧大aso技巧
  • 做ps找图的网站有哪些网络营销的网站建设
  • 怎么做好seo内容优化太原seo全网营销
  • dedecms 网站日志网站建设策划
  • 怎样做货源网站怎样推广小程序平台
  • 承德哪里做网站seo方法培训
  • 网站 数据库+1网络营销专业的就业方向
  • 做pcr查基因序列的网站saascrm国内免费pdf
  • 网站怎么设置标题分销渠道
  • 网站建设课程设计报告seo赚钱培训课程
  • 建立网站商城建议衡阳百度推广公司
  • 小程序招商广州seo优化排名公司
  • 襄阳网站设计制作公司专业网站制作
  • 工程信息网站哪家做的较好武汉百度百科
  • 政府网站上怎么做电子签名广州seo推广服务
  • 网站被别人做镜像市场宣传推广方案
  • 简述网站建设的步骤上海短视频推广
  • 彩票网站的表格是如何做的宁波网站推广营销
  • 长沙市网站推广公司情感营销的十大案例
  • 网站上的产品五星怎样做优化今日头条新闻军事
  • 电商设计个人作品集制作湘潭seo公司
  • 怎么建网站教程视频网络推广费用大概价格
  • 临泽县建设局网站搜索引擎的优化方法有哪些