Vue $refs 简介和使用

发布于 2022-08-29 08:53:23 字数 3048 浏览 199 评论 0

$refs Vue 中的属性 用于引用 DOM 元素

一个常见的用例 $refs 元素 当某个事件发生时,专注于 DOM autofocus 属性 适用于页面加载。 但是如果您想将注意力重新集中在 username 登录失败时输入?

如果你给 username 输入一个 ref 属性,然后您可以访问 username 输入使用 this.$refs.username 如下所示。 然后你可以调用 内置 Element#focus() 功能 赋予焦点的 username 输入。

  const app = new Vue({
    data: () => ({ username: '', password: '', failed: false }),
    methods: {
      login: async function() {
        // Simulate that login always fails, just for this example
        this.failed = true;

        // Give focus back to `username` input. If you change the
        // 'ref' attribute in the template to 'usernameRef', you
        // would do `this.$refs.usernameRef` here.
        this.$refs.username.focus();
      }
    },
    template: `
      <div>
        <input type="text" v-model="username" ref="username">
        <input type="password" v-model="password">
        <button v-on:click="login()">Login</button>
        <div v-if="failed">
          Login Failed!
        </div>
      </div>
    `
  });

v-for 一起使用

当你使用 ref_ v-for 指令 ,Vue 为您提供了一个原生 JavaScript 元素数组,而不仅仅是单个元素。

例如,假设您有一个列表 <input> 标签,并且您希望用户能够使用向上和向下箭头键在输入之间导航。
您可以访问个人 <input> 元素使用 $refs 并调用 focus() 每当用户向上或向下按下时:

  const app = new Vue({
    data: () => ({ cells: ['foo', 'bar', 'baz'].map(val => ({ val })) }),
    mounted: function() {
      let cur = 0;
      this.$refs.inputs[0].focus();

      document.addEventListener('keyup', ev => {
        console.log('Got event', ev)
        cur = this.$refs.inputs.findIndex(el => document.activeElement === el);
        if (cur === -1) {
          cur = 0;
        }

        const numEls = this.cells.length;
        if (ev.keyCode === 38) { // Up arrow
          cur = (numEls + cur - 1) % numEls; 

          this.$refs.inputs[cur].focus();
        } else if (ev.keyCode === 40) { // Down arrow
          cur = (cur + 1) % numEls;

          this.$refs.inputs[cur].focus();
        }
      });
    },
    template: `
      <div>
        <div v-for="cell in cells">
          <input v-model="cell.val" ref="inputs">
        </div>
      </div>
    `
  });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

0 文章
0 评论
23 人气
更多

推荐作者

lorenzathorton8

文章 0 评论 0

Zero

文章 0 评论 0

萧瑟寒风

文章 0 评论 0

mylayout

文章 0 评论 0

tkewei

文章 0 评论 0

17818769742

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文