34 在Vue3中如何通过ref获取DOM元素

概述

通过ref获取DOM节点也是一种非常常见的用法。

最常见的地方就是表单提交的时候,我们经常会给表单绑定一个ref,在条件之前通过ref获取表单数据,并校验表单数据是否正确。

在本节课中,我们使用ref引用一个textarea文本域,同事实记录文本域中的段落数量,句子数量和单词数量。

本节课需要依赖一个第三方库,我们先安装:

bash 复制代码
yarn add countable

基本用法

我们创建src/components/Demo34.vue,代码如下:

html 复制代码
<script setup>
import * as Countable from 'countable'
import {onMounted, ref} from "vue";

const count = ref({})
const textAreaRef = ref(null)

onMounted(() => {
  Countable.on(textAreaRef.value, (value) => {
    count.value = value
  })
})
</script>
<template>
  <!--段落-->
  <textarea
      ref="textAreaRef"
      cols="50"
      rows="7"
  >
    </textarea>

  <!--段落计数-->
  <ul>
    <li>段落: {{ count.paragraphs }}</li>
    <li>句子: {{ count.sentences }}</li>
    <li>单词: {{ count.words }}</li>
  </ul>
</template>

接着,我们修改src/App.vue:

html 复制代码
<script setup>
import Demo from "./components/Demo34.vue"
</script>
<template>
  <h1>欢迎跟着Python私教一起学习Vue3入门课程</h1>
  <hr>
  <demo/>
</template>

然后,我们浏览器访问:http://localhost:5173/

完整代码

package.json

json 复制代码
{
  "name": "hello",
  "private": true,
  "version": "0.0.0",
  "type": "module",
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview"
  },
  "dependencies": {
    "countable": "^3.0.1",
    "vue": "^3.3.8"
  },
  "devDependencies": {
    "@vitejs/plugin-vue": "^4.5.0",
    "vite": "^5.0.0"
  }
}

vite.config.js

js 复制代码
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
  plugins: [vue()],
})

index.html

html 复制代码
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/svg+xml" href="/vite.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Vite + Vue</title>
  </head>
  <body>
    <div id="app"></div>
    <script type="module" src="/src/main.js"></script>
  </body>
</html>

src/main.js

js 复制代码
import { createApp } from 'vue'
import App from './App.vue'

createApp(App).mount('#app')

src/App.vue

html 复制代码
<script setup>
import Demo from "./components/Demo34.vue"
</script>
<template>
  <h1>欢迎跟着Python私教一起学习Vue3入门课程</h1>
  <hr>
  <demo/>
</template>

src/components/Demo34.vue

html 复制代码
<script setup>
import * as Countable from 'countable'
import {onMounted, ref} from "vue";

const count = ref({})
const textAreaRef = ref(null)

onMounted(() => {
  Countable.on(textAreaRef.value, (value) => {
    count.value = value
  })
})
</script>
<template>
  <!--段落-->
  <textarea
      ref="textAreaRef"
      cols="50"
      rows="7"
  >
    </textarea>

  <!--段落计数-->
  <ul>
    <li>段落: {{ count.paragraphs }}</li>
    <li>句子: {{ count.sentences }}</li>
    <li>单词: {{ count.words }}</li>
  </ul>
</template>

启动方式

bash 复制代码
yarn
yarn dev

浏览器访问:http://localhost:5173/

相关推荐
祈澈菇凉1 小时前
Webpack的基本功能有哪些
前端·javascript·vue.js
小纯洁w1 小时前
Webpack 的 require.context 和 Vite 的 import.meta.glob 的详细介绍和使用
前端·webpack·node.js
想睡好2 小时前
css文本属性
前端·css
qianmoQ2 小时前
第三章:组件开发实战 - 第五节 - Tailwind CSS 响应式导航栏实现
前端·css
记得早睡~2 小时前
leetcode150-逆波兰表达式求值
javascript·算法·leetcode
zhoupenghui1682 小时前
golang时间相关函数总结
服务器·前端·golang·time
White graces2 小时前
正则表达式效验邮箱格式, 手机号格式, 密码长度
前端·spring boot·spring·正则表达式·java-ee·maven·intellij-idea
庸俗今天不摸鱼2 小时前
Canvas进阶-4、边界检测(流光,鼠标拖尾)
开发语言·前端·javascript·计算机外设
bubusa~>_<2 小时前
解决npm install 出现error,比如:ERR_SSL_CIPHER_OPERATION_FAILED
前端·npm·node.js
yanglamei19623 小时前
基于Python+Django+Vue的旅游景区推荐系统系统设计与实现源代码+数据库+使用说明
vue.js·python·django