isRef、unRef、toRef、toRefs、shallowRef


<script setup lang="ts">
import { reactive, toRefs} from "vue"

function useCount() {
  const state = reactive({
    count: 0,
  })

  function update(value: number) {
    console.log('value :>> ', value);
    state.count = value
  }

  return {
    state: toRefs(state),
    update,
  }
}

// Ensure the destructured properties don't lose their reactivity
const { state: { count }, update } = useCount()

</script>

<template>
  <div>
    <p>
      <span @click="update(count-1)">-</span>
      {
  { count }}
      <span @click="update(count+1)">+</span>
    </p>
  </div>
</template>

toRefs是把一个响应式对象变成普通对象,这个对象每个属性都指向源对象相应属性的ref;

<script setup lang="ts">
import { ref, Ref,isRef,unref,toRef, reactive } from "vue"

const initial = ref(10)
const count = ref(0)

// 挑战 1: 更新 ref
function update(value) {
  // 实现...
  count.value = value
}

/**
 * 挑战 2: 检查`count`是否为一个 ref 对象
 * 确保以下输出为1
*/
console.log(
  // impl ? 1 : 0
  isRef(count) ? 1 : 0
)

/**
 * 挑战 3: 如果参数是一个 ref,则返回内部值,否则返回参数本身
 * 确保以下输出为true
*/
function initialCount(value: number | Ref<number>) {
  // 确保以下输出为true
  console.log(unref(value) === 10)
}

initialCount(initial)

/**
 * 挑战 4:
 * 为源响应式对象上的某个 `property` 新创建一个 `ref`。
 * 然后,`ref` 可以被传递,它会保持对其源`property`的响应式连接。
 * 确保以下输出为true
*/
const state = reactive({
  foo: 1,
  bar: 2,
})
const fooRef = toRef(state,'foo') // 修改这里的实现...

// 修改引用将更新原引用
fooRef.value++
console.log(state.foo === 2)

// 修改原引用也会更新`ref`
state.foo++
console.log(fooRef.value === 3)

</script>

<template>
  <div>
    <h1>msg</h1>
    <p>
      <span @click="update(count - 1)">-</span>
      {
  { count }}
      <span @click="update(count + 1)">+</span>
    </p>
  </div>
</template>

isRef检查某个值是否是ref;

toRef可以把一个响应式对象的属性也变成响应式,这样创建的ref与其源属性保持一致;

unRef是一个语法糖,如果参数是ref,返回它的内部值,否则返回它本身,相当于

val =  isRef(val) ? val.value : val

shallowRef只有它的.value是响应式的,不会被深层递归地转为响应式。

const state = shallowRef({ count: 1 })

// 不会触发更改

state.value.count = 2

// 会触发更改

state.value = { count: 2 }

相关推荐

最近更新

  1. TCP协议是安全的吗?

    2023-12-16 07:26:01       16 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2023-12-16 07:26:01       16 阅读
  3. 【Python教程】压缩PDF文件大小

    2023-12-16 07:26:01       15 阅读
  4. 通过文章id递归查询所有评论(xml)

    2023-12-16 07:26:01       18 阅读

热门阅读

  1. g++/git/vim相关学习笔记

    2023-12-16 07:26:01       37 阅读
  2. linux定时任务

    2023-12-16 07:26:01       38 阅读
  3. 电学基础名词

    2023-12-16 07:26:01       37 阅读
  4. html 基础学习笔记

    2023-12-16 07:26:01       29 阅读
  5. Lua 模仿C++类

    2023-12-16 07:26:01       40 阅读
  6. PHP中如何进行单元测试和集成测试?

    2023-12-16 07:26:01       42 阅读
  7. 力扣5. 最长回文子串

    2023-12-16 07:26:01       36 阅读
  8. 30天精通Nodejs--第十四天:MongoDB

    2023-12-16 07:26:01       41 阅读
  9. 虾皮Shopee API接口获取商品图片列表

    2023-12-16 07:26:01       46 阅读
  10. register_chrdev函数使用

    2023-12-16 07:26:01       38 阅读