需求

将接口请求到的列表数据赋值给响应数据arr

代码

const arr = reactive([]);

const load = () => {
  const res = [2, 3, 4, 5]; //假设请求接口返回的数据
  // 方法1 失败,直接赋值丢失了响应性
  // arr = res;
  // 方法2 这样也是失败
  // arr.concat(res);
  // 方法3 可以,但是很麻烦
  res.forEach(e => {
    arr.push(e);
  });
};

方法1:vue3 使用 proxy,对于对象和数组都不能直接整个赋值;
方法2:concat 不改变原数组

// 方法4
const state = reactive({
  arr: []
});
state.arr = [1, 2, 3]

// 方法5
const state = ref([])
state.value = [1, 2, 3]

// 方法6
const arr = reactive([])
arr.push(...[1, 2, 3])
// 亦或者
arr.length = 0 // 清空原数组
arr.push(...res) // 解构然后push进去
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐