React 应用程序在 api 响应后重新加载页面

问题描述 投票:0回答:1

单击按钮时 进行 python api 调用后,react 应用程序正在重新加载。

尝试添加 e.preventDefault 仍然没有成功

app.py 返回以下代码

return jsonify({"file_path": file_path})

从反应调用中尝试如下

const response = await axios.post('http://127.0.0.1:5000/upload_images', {
            images: imageFilesArray
        });

        console.log('Upload successful:', response.data);
fetch("http://127.0.0.1:5000/rewrite_json", requestOptions)
        .then((response) => response.text())
        .then((result) => console.log(result))
        .catch((error) => console.error(error));
python reactjs axios fetch-api
1个回答
0
投票

发现问题了。

当我使用动态生成的内容文件更新同一文件夹时,随着文件夹的更新,本地应用程序将重新呈现。

我的 python 代码正在创建动态创建的文件并将其存储到同一项目文件夹中。

在本地它会重新渲染。

© www.soinside.com 2019 - 2024. All rights reserved.