我有一个苗条的商店,我在变量命名的任务中保存了一些虚拟数据。我还使用 Axios 在商店内使用 API 获取新数据。然后将新数据推送到任务变量中。可以在组件中读取正确的数据,但来自 api 的数据不会呈现。
import { writable } from "svelte/store";
import config from "../../config";
import axios from "axios";
let tasks = [
{
// this is what api fetches.
id: 500,
name: "task 500",
status: 0,
},
];
axios
.get(config.API_URL + "task")
.then(function (response) {
response.data.tasks.forEach((task) => {
tasks.push(task);
tasks = tasks;
});
})
.catch(function (error) {
console.log("something went wrong");
});
// console.log(tasks);
const Tasks = writable(tasks);
export default Tasks;
我需要以某种方式使用自动或手动重新呈现组件中的任务列表。或任何其他可能的方式。组件中的任务数据记录正常,但组件视图未更新。