gpt4 book ai didi

typescript - 如何使用响应式(Reactive)方法设置 Vue 3 Composition API(Typescript)待办事项列表应用程序

转载 作者:行者123 更新时间:2023-12-05 09:29:20 24 4
gpt4 key购买 nike

我正在尝试使用带有 typescript 的 Vue 3 Composition API 构建一个基本的待办事项列表应用程序。我之前为我的组件配置了设置函数以使用 ref处理传入 listItems 的用户输入的 react 性的方法大批。现在我正在尝试重构我的设置函数以使用 reactive方法,将我的待办事项应用程序的属性排列为一个对象。在我创建的状态对象中,我初始化了 newTodo作为空字符串,listItems作为字符串数组。 addTodo然后调用函数将用户输入的 newTodo 值推送到 listItems 数组中。但是,通过此设置,我现在收到一个解析错误,指出需要一个标识符。此错误似乎针对状态对象中的 listItems 属性:listItems: <string[]>[] .我想假设这意味着需要将一个 id 添加到状态对象以便附加到每个列表项,但我不确定如何动态处理它。知道如何解决这个问题吗?见下面的代码:

模板

<template>
<div class="container">
<form @submit.prevent="addTodo()">
<label>New ToDo</label>
<input
v-model="state.newTodo"
name="newTodo"
autocomplete="off"
>
<button>Add ToDo</button>
</form>

<div class="content">
<ul>
<li v-for="listItem in state.listItems" :key="listItem">
<h3>{{ listItem }}</h3>
</li>
</ul>
</div>
</div>
</template>

脚本

<script lang="ts">
import { defineComponent, reactive } from 'vue';

export default defineComponent({
name: 'Form',

setup() {
const state = reactive({
newTodo: '',
listItems: <string[]>[]
})

const addTodo = () => {
state.listItems.push(state.newTodo)
state.newTodo = ''
}

return { state, addTodo }
}
});
</script>

最佳答案

你必须像这样在 reactive 中使用泛型:

const state = reactive<{ newTodo: string; listItems: string[] }>({
newTodo: "",
listItems: [],
});

您还可以像这样转换 listItems 状态:

const state = reactive({
newTodo: "",
listItems: [] as string[],
});

但我认为第一种方案更好

关于typescript - 如何使用响应式(Reactive)方法设置 Vue 3 Composition API(Typescript)待办事项列表应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70732457/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com