I have this simple function.
我有这个简单的功能。
@app.route('/save')
def save():
with open("hello.txt", 'w') as file:
file.write("hello")
file.close()
return "done"
@apI have this simple function.
我有这个简单的功能。
@app.route('/save')
def save():
with open("hello.txt", 'w') as file:
file.write("hello")
file.close()
return "done"
@ap