gpt4 book ai didi

django - 在 Django 中使用简单 View 翻转 boolean 值?

转载 作者:行者123 更新时间:2023-12-04 23:32:13 29 4
gpt4 key购买 nike

我有一个简单的 View ,但无法让它做它应该做的事情,这只是翻转一个 boolean 值:

def change_status(request):
request.user.get_profile().active=not request.user.get_profile().active
return render_to_response('holdstatus.html', {
'user' : request.user,
})

除了“不”之外,我还尝试过“-”和“!”,但都无济于事。

最佳答案

您需要将更改保存到数据库。

def change_status(request):
profile = request.user.get_profile()
profile.active = not profile.active
profile.save()
return render_to_response('holdstatus.html', {
'user': request.user,
})

关于django - 在 Django 中使用简单 View 翻转 boolean 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3368550/

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