单击按钮时 进行 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 代码正在创建动态创建的文件并将其存储到同一项目文件夹中。
在本地它会重新渲染。