- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将消息添加到第一个 View 并通过重定向将它们传递到第二个 View :
第一 View :
def index(request):
...etc...
messages.info(request, "My message!")
return redirect('second_view', pk=pk)
第二种观点:
class SecondView(TemplateView):
template_name = "template.html"
def get_context_data(self, **kwargs):
context = super(SecondView, self).get_context_data(**kwargs)
pk = kwargs.get('pk')
context.update({
'pk': pk,
})
return context
@method_decorator(login_required)
@method_decorator(ensure_csrf_cookie)
def dispatch(self, *args, **kwargs):
return super(SecondView, self).dispatch(*args, **kwargs)
template.html
:
{% if messages %}
<div>
<p>This is a test.</p>
{% for message in messages %}
{{message}}
{% endfor %}
</div>
{% endif %}
设置.py:
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.request',
'accounts.context_processors.extra_context',
'django.contrib.messages.context_processors.messages',
)
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
.....etc.....
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'corsheaders.middleware.CorsMiddleware',
'django.middleware.common.CommonMiddleware',
)
但在我的 template.html 中,{% if messages %}
返回假。我怎样才能让这些消息显示出来?
编辑:
如果我只是尝试将 {{messages}}
在我的模板中,它呈现如下:<django.contrib.messages.storage.fallback.FallbackStorage object at 0x108271950>
但是当我调用{% if messages %}
这不会返回 {%if%}
的内容声明。
编辑2:
我有一个测试,消息在 html 中正确显示,通过了:
def test_home_page_signup_messages(self):
data = create_signup_post_data()
url = reverse('signup')
response = self.client.post(url, data, follow=True)
messages = [m.message for m in list(response.context['messages'])]
self.assertIn("My message!", messages) # PASSES
self.assertIn("My message!", response.content) # PASSES
最佳答案
我认为这里的问题是重定向没有传递任何包含消息的上下文。 documentation explains that :
If you’re using the context processor, your template should berendered with a RequestContext. Otherwise, ensure messages isavailable to the template context.
因此,messages
重定向后将不可用。但是,您可以使用 django.contrib.messages.get_messages
自行检索消息:
from django.contrib.messages import get_messages
class SecondView(TemplateView):
template_name = "template.html"
def get_context_data(self, **kwargs):
context = super(SecondView, self).get_context_data(**kwargs)
pk = kwargs.get('pk')
context.update({
'pk': pk,
'messages': get_messages(self.request),
})
return context
@method_decorator(login_required)
@method_decorator(ensure_csrf_cookie)
def dispatch(self, *args, **kwargs):
return super(SecondView, self).dispatch(*args, **kwargs)
回应:
EDIT:
If I simply try to put
{{messages}}
into my template, it renders like this:<django.contrib.messages.storage.fallback.FallbackStorage object at 0x108271950>
but when I call
{% if messages %}
this does not return the contents of the{%if%}
statement.
这是我的确切代码,减去 URL:
# ------- URLS
# Django
from django.conf.urls import patterns, url
from .views import SecondView
urlpatterns = patterns("myapp.views",
url(r'^test/$', 'index'),
url(r'^test/(?P<pk>\d+)/$', view=SecondView.as_view(), name='second_view')
)
# ------- VIEWS
from django.views.generic import TemplateView
def index(request):
from django.contrib import messages
from django.shortcuts import redirect
messages.info(request, "My message!")
pk = 2
return redirect('second_view', pk=pk)
from django.contrib.messages import get_messages
from django.views.decorators.csrf import ensure_csrf_cookie
from django.contrib.auth.decorators import login_required
from django.utils.decorators import method_decorator
class SecondView(TemplateView):
template_name = "template.html"
def get_context_data(self, **kwargs):
context = super(SecondView, self).get_context_data(**kwargs)
pk = kwargs.get('pk')
context.update({
'pk': pk,
'messages': get_messages(self.request),
})
return context
@method_decorator(login_required)
@method_decorator(ensure_csrf_cookie)
def dispatch(self, *args, **kwargs):
return super(SecondView, self).dispatch(*args, **kwargs)
# ------- TEMPLATE
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>
{% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %}Important: {% endif %}
{{ message }}
</li>
{% endfor %}
</ul>
{% endif %}
</body>
</html>
关于 Django 1.7.4 : messages not showing up in TemplateView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28704559/
我尝试将 python 2.x 代码移植到 python 3。我正在努力解决的问题是 from mimetools import Message ... headers = Message(Strin
我有一个输入组件,它有三种类型的验证(required、validatorMessage、converterMessage),这个输入有自己的消息图标,整个表单有一个消息组件来显示所有组件的所有消息,
我有一个使用消息代理 (activemq) 的带有 spring 和 websockets 的 webapp。 这是我的配置类: @Configuration @EnableWebSocketMess
据我了解mbox Python 3.6 标准库中的类生成 email.message.Message 类型的旧式消息对象. 较新的类(class) email.message.EmailMessage
我使用的是mysql。 我有一个包含 userid、message_id、opened(true 或 false)、时间戳的消息表。 我希望所有未打开最近收到的 5 条消息的用户 这就是我现在拥有的:
我是 Android 的新手,发现要不断更新主视图,我必须创建一个线程来处理各种进程,然后将更新传回主视图。我决定使用 Handler 类来执行此操作。此示例中的 View 有一个用于激活代码的按钮和
我遇到了重定向符号的不同位置( > , &2 message message echo message >&2 message >&2 echo message message 对于所有表单,我得到了
我想使用 firebase 云函数发送通知,所以我尝试使用 firebase.messaging().getToken() 获取 token ,但我不断收到错误消息: TypeError: fireb
我实现了一个短信应用。现在我在使用 Oppo 设备时遇到了问题,因为无论何时收到消息,系统都会将默认应用程序更改为内置应用程序并显示此消息: For your messages security, S
我正在实现本指南:https://spring.io/guides/gs/centralized-configuration/关于Spring Cloud配置。 服务器: @EnableConfigS
我想在“匹配”之后,向所有比赛发送介绍信息。你知道一种轻松发送的方法吗?(我使用 Bluestacks) 提前致谢。问候。 最佳答案 只需传递 session.send()在session.dialo
在我们的应用程序中,我们使用 kafka 并有一个像这样的 Spring Cloud 输入流 @Component public interface SomeChannel { @Input(
这周我在通过 Node.js 库(代码相同,库版本相同等)向我的 iOS 设备发送消息时遇到了很多内部错误 很难调试,因为有时它会起作用。当我使用 for 循环发送 10 条消息时,我的设备将收到 3
我目前正在记录错误并希望获得尽可能多的描述性细节。我知道我可以捕获许多不同类型的异常,但 Exception.Message 之间有什么区别?和 Exception.InnerException.Me
我创建了一个映射到 MyBean.beansField 的表单。我使用 javax.validation.NotNull 注释来确保必须输入它。到目前为止一切正常,但错误消息如下所示: beansFi
我正在研究 Azure 服务总线。我的服务总线队列正在处理一条消息 3 次。我的消息锁定时间是5分钟。每条消息最多处理 2 分钟,但我不知道为什么队列会选择相同的消息并发送到处理,而重复的消息仅在 5
我正在使用最新的快速修复版本,即 1.6.0。我已经有针对 1.5.3 编写的代码,我想做的是将其升级到 1.6.0 我遇到的问题是,当我使用破解(msg,sessionID)方法时,它会抛出quic
当我调用 grails message()函数来查找和评估消息 key 对,它无法评估参数。 在我的 Controller 中,我调用消息函数: rejectWithError(message(cod
我使用一个小型 Spring 应用程序,其中数据库中的值很少,我想使用可变调用来检索它们。 API 在这里, @RestController @RequestMapping("/api/v1/prod
我在想在用以更好的方式,像这样: Please inform us about: 这个想法是以一种不同的方式向用户展示消息,具有更多的风格。这可能吗? 最佳答案 它们可通过 Fac
我是一名优秀的程序员,十分优秀!