gpt4 book ai didi

Django View : good programming practice question

转载 作者:行者123 更新时间:2023-12-04 06:31:50 25 4
gpt4 key购买 nike

假设您有一个使用 post 和 get 方法的网页,并且您编写了以下 View 来生成它:

def homepage(request):
if 'login' in request.POST:
# ......... code goes here, and you return an appropriate response

if 'register' in request.POST:
# ......... code goes here, and you return an appropriate response

# When no Post request, just render the page
return render_to_response('homepage.html')

问题:

将上述 View 拆分为三个 View 是否被认为是一种良好的编程习惯:一个用于登录,一个用于注册,另一个用于呈现页面?或者可以保持原样。

编辑

在上面列出的情况下,我没有检查服务器是否收到了“GET”。但想法还是一样的:)

最佳答案

我认为更好的主意是让两个表单中的每一个都提交到不同的 URL。然后你可以定义 View ,例如,/login , /register , 和 / (默认主页处理程序)。您对 /login 的意见和 /register可以用if request.method == 'POST' ,然后如果使用 GET 请求调用它们,则重定向到主页。

关于Django View : good programming practice question,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5306675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com