3

我正在创建一个使用对象来存储我的数据的商店。

我可以使用扩展运算符更新商店,但我也可以在没有扩展运算符的情况下更新它。

Svelte 是否像 React 一样,我应该在更新对象状态之前使用扩展运算符创建一个新对象,这样我就不会改变原始对象?

withSpreadOperator()或者withoutSpreadOperator()……这就是问题所在。

//stores.js

import { writable } from "svelte/store";

export const counts = writable({ n: 0 });
//App.js

<script>
  import { count } from "./stores.js";

  function withSpreadOperator() {
    count.update(o => {
      let x = { ...o };
      x.n++;
      return x;
    });
  }

  function withoutSpreadOperator() {
    count.update(o => {
      o.n++;
      return o;
    });
  }
</script>

<h1>The count is {$count.n}</h1>
<button on:click="{withSpreadOperator}">+</button>
<button on:click="{withoutSpreadOperator}">+</button>
4

1 回答 1

4

你也可以,Svelte 不介意。这真的取决于你喜欢哪种风格。

于 2019-12-04T01:44:58.333 回答