我正在使用 Flask API 来获取请求。但是在接收数据时,它在接收数据时抛出连接失败的异常。在开发阶段使用它时非常烦人。 谁能告诉我如何解决这个问题?
import tkinter as tk
from PIL import Image
from PIL import ImageTk
path1='images/test1.png'
path2='images/test2.png'
root = tk.Tk()
img = ImageTk.PhotoImage(Image.open(path1))
panel = tk.Label(root, image=img)
panel.pack(side="bottom", fill="both", expand="yes")
def callback(e):
img2 = ImageTk.PhotoImage(Image.open(path2))
panel.configure(image=img2)
panel.image = img2
root.bind("<Return>", callback)
root.mainloop()
这里返回的是下图url的链接,
FutureBuilder(
future: imagegetter(),
builder: (context, snapshot) {
if (snapshot.hasError) {
return CircularProgressIndicator();
} else if (snapshot.hasData) {
return Image.network(snapshot.data);
} else {
return Center(
child: Text("No Image Found"),
);
}
},
),
}