You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md

41 lines
1.1 KiB

---
title: Updating arrays and objects
---
6 years ago
Because Svelte's reactivity is triggered by assignments, using array methods like `push` and `splice` won't automatically cause updates. For example, clicking the button doesn't do anything.
One way to fix that is to add an assignment that would otherwise be redundant:
```js
function addNumber() {
numbers.push(numbers.length + 1);
numbers = numbers;
}
```
But there's a more idiomatic solution:
```js
function addNumber() {
6 years ago
numbers = [...numbers, numbers.length + 1];
}
```
You can use similar patterns to replace `pop`, `shift`, `unshift` and `splice`.
Assignments to *properties* of arrays and objects — e.g. `obj.foo += 1` or `array[i] = x` — work the same way as assignments to the values themselves.
```js
function addNumber() {
numbers[numbers.length] = numbers.length + 1;
}
```
5 years ago
A simple rule of thumb: the name of the updated variable must appear on the left hand side of the assignment. For example this...
```js
5 years ago
const foo = obj.foo;
foo.bar = 'baz';
```
5 years ago
...won't update references to `obj.foo.bar`, unless you follow it up with `obj = obj`.