获取自定义属性的方法:
第一步:首先在标签上绑定上@click="getDateId(item.id)",并将属性值传到绑定的事件里面
第二步:在标签上继续绑定:date-id = "item.id"属性
第三步:在<script>里面的属性methods里面添写上事件函数 getDateId(id){} 在事件函数里面获取id的值即可
1
2
3
4
5
6
7
8
9
10
|
<template>
<h2 class= "left t-title" @click= 'getDataId(item.id)' :data-id= "item.id" ></h2>
</template>
<script>
methods: {
getDataId(id) {
console.log(id);
}
},
</script>
|
补充知识:vue本地存储、获取自定义data-id、获取链接url参数、页面跳转返回、修改页面title
一、本地存储:
localStorage.setItem('uqid','REgaI2eAT9yDfpdc'); //存储本地(传死参)
var uqid = localStorage.getItem('uqid'); // 获取存储本地值
或者
1
2
3
|
var orderSn = 20;
localStorage.setItem( 'orderSn' ,orderSn);
var uqid = localStorage.getItem( 'orderSn' );
|
二、获取自定义--------data-id
1
2
3
|
bindList(e){
var autoId = $(e.currentTarget).attr( 'data-id' ); //获取div -data
},
|
三、获取链接---url参数
1
2
3
4
5
|
http: //localhost:8080/#/lineitem?uqid =2019032817530157997 (获取---uqid )
bindList(){
var uqid = utils.getUrlKey( 'uqid' );
alert(uqid );
},
|
以上获取url参数需要引入js文件----utils.js
1
2
3
4
5
6
|
/* eslint-disable */
export default {
getUrlKey: function (name) {
return decodeURIComponent(( new RegExp( '[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)' ).exec(location.href) || [, "" ])[1].replace(/\+/g, '%20' )) || null
}
}
|
main.js全局引入下
import utils from './assets/js/utils.js' //获取url参数
global.utils = utils;
四、页面跳转返回
1
2
3
4
5
6
7
8
9
|
@click= "bindReturn"
methods:{
bindReturn(){
this .$router.go(-1); //返回上一页,
},
bindOrider(){
this .$router.push({path: '/doctorlist' }); //页面跳转
},
}
|
router/index.js文件中
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import doctorList from '@/components/doctorlist'
export default new Router({
routes: [
{
path: '/doctorlist' ,
name: 'doctorList ' ,
component:doctorList ,
meta: {
title: '我是修改后的页面title'
}
},
]
})
|
修改页面title--main.js 最后添加
1
2
3
4
5
6
7
8
|
// 修改页面title
router.beforeEach((to, from, next) => {
/* 路由发生变化修改页面title */
if (to.meta.title) {
document.title = to.meta.title;
}
next();
})
|
以上这篇在Vue中获取自定义属性方法:data-id的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_44472790/article/details/90273766