Django消息-添加前检查消息是否已存在

时间:2018-08-31 10:04:59

标签: django django-messages

是否可以在添加另一条消息之前检查django消息和内容是否存在?

在我的示例中,我在循环中执行try-except,如果发生异常,我添加一条消息,但我只希望该消息出现一次,而不是针对其中的每个项目循环:

for i in data:
    # do something...
    try:
        # try to act upon something
    except:
        # failed action add a message
        if not messages.?.contains("Error: Unable to perform action X")
            messages.add_message(request, messages.ERROR, 'Error: Unable to perform action X')
        pass

1 个答案:

答案 0 :(得分:4)

您正在寻找messages.get_messages(request)方法。

要获取所有消息的列表,请将该方法调用包装在list构造函数中:

all_messages = list(messages.get_messages(request))

每个消息对象都有有关其级别,消息本身等的信息。您可以使用该字段来检查要搜索的消息是否已经存在。

简单的代码段:

all_error_messages_content = [msg.message for msg in list(messages.get_messages(request)) if msg.level_tag == 'error']
if 'Error: Unable to perform action X' not in all_error_messages_content:
     messages.add_message(request, messages.ERROR, 'Error: Unable to perform action X')