我已经在谷歌应用引擎中成功地部署了我的 python 和瓶子框架应用程序,但是,我遇到了最奇怪的错误之一。
每当我尝试打开文件进行写入时,我都会收到错误消息,
Error: 500 Internal Server Error
Sorry, the requested URL 'http://issamcodemate.appspot.com/' caused an error:
Internal Server Error
当我在服务器端执行以下任何语句时,就会发生这种情况,
f = open("Files/currentFile.txt",'r+')
f = open("Files/currentFile.txt",'w')
f = open("Files/currentFile.txt",'a')
奇怪的是,当我执行这段代码时它工作正常,
f = open("Files/currentFile.txt",'r')
但这只是为了阅读......
提前致谢..