# 获取数据时遇到 Proxy 包裹的数据

img

# 解决

# 1. 通过 json 序列化之后可获取值

const Data = JSON.parse(JSON.stringify(record));
console.log(Data, 'data----');

打印结果为:

img

# 2. 使用 toRaw

Vue3.0 给我们提供的新方法,toRaw 方法是把被 reactive 或 readonly 后的 Proxy 对象转换为原来的 target 对象

const Data = toRaw(record);
console.log(Data, 'data----');

打印结果为:

img