Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我打算更新具有 GqlQuery 代码的后续帖子时,我无意中发布了对上一篇帖子的修订。
你还没有理解网络请求是如何工作的。您不能“停留在同一页面上”,因为 POST - 即使是到同一个 URL - 也是对新页面的请求。由您的代码来呈现整个页面,包括标题和格式,包括新值。
这当然是您应该使用适当的模板引擎而不是手动构建 HTML 的原因。Jinja2 在 GAE 中可用,您应该使用它在 GET 和 POST 上呈现您的模板。