当前位置:网站首页>toRefs API 与 toRef Api
toRefs API 与 toRef Api
2022-07-07 03:12:00 【要成为光的女人】
1.如果我们使用ES6的解构语法,对reactive 返回的对象进行解构获取值,那么之后无论是修改解构后的值,还是修改reactive 返回的state 对象,数据都不再是响应式的:
const info=reactive({
name:"jiang",
age:18
});
let {name,age}=info
2.那有咩有办法让我们解构出来的属性是响应式的呢?
- Vue为我们提供了一个toRefs的函数,可以将reactive返回的对象中的属性都转成ref;
- 那么我们再次进行解构出来的name和age 本身都是ref的;
//当我们这样来做的时候,会返回两个ref对象,它们是响应式的
let {name,age}=toRefs(info)
//1.toRefs:将reactive 对象中的所有属性都转成ref,建立链接
3.这种做法相当于info.name和refvalue之间建立了链接,任何一个修改都会引起另一个变化;
toRefs 和 toRef的区别
- toRefs:将reactive 对象中的所有属性都转成ref,建立链接
- toRef: 对其中一个属性进行转化成ref,建立连接
let {name}=info
let age=toRef(info,"age");
边栏推荐
- Take you to brush (niuke.com) C language hundred questions (the first day)
- oracle如何备份索引
- Bus消息总线
- Unity C# 函数笔记
- How can flinksql calculate the difference between a field before and after update when docking with CDC?
- sqlserver多线程查询问题
- 7天零基础能考证HCIA吗?华为认证系统学习路线分享
- MySQL SQL的完整处理流程
- 工具类:对象转map 驼峰转下划线 下划线转驼峰
- impdp的transform参数的测试
猜你喜欢
LVS+Keepalived(DR模式)学习笔记
途家、木鸟、美团……民宿暑期战事将起
Graduation design game mall
[noi simulation] regional division (conclusion, structure)
Use of completable future
JDBC database connection pool usage problem
Big coffee gathering | nextarch foundation cloud development meetup is coming
How to share the same storage among multiple kubernetes clusters
Matlab tips (30) nonlinear fitting lsqcurefit
Prime partner of Huawei machine test questions
随机推荐
快速定量,Abbkine 蛋白质定量试剂盒BCA法来了!
MySQL SQL的完整处理流程
网络基础 —— 报头、封装和解包
[GNN] graphic gnn:a gender Introduction (including video)
ip地址那点事
带你刷(牛客网)C语言百题(第一天)
Under what circumstances should we consider sub database and sub table
MATLAB小技巧(29)多项式拟合 plotfit
From zero to one, I will teach you to build the "clip search by text" search service (2): 5 minutes to realize the prototype
MySQL的主从复制原理
ANR 原理及实践
【NOI模拟赛】区域划分(结论,构造)
Can 7-day zero foundation prove HCIA? Huawei certification system learning path sharing
从零到一,教你搭建「CLIP 以文搜图」搜索服务(二):5 分钟实现原型
Navicat importing 15g data reports an error [2013 - lost connection to MySQL server during query] [1153: got a packet bigger]
根据IP获取地市
Networkx绘图和常用库函数坐标绘图
Anr principle and Practice
Sqlserver multithreaded query problem
分布式id解决方案