作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想访问 临时数据 在我的助手中获取闪现消息(如在 ruby 中)
我收到一个运行时错误
The name 'TempData' does not exist in the current context
@helper Show()
{
var message = "test message";
var className = "info";
if (TempData["info"] != null)
{
message = TempData["info"].ToString();
className = "info";
}
else if (TempData["warning"] != null)
{
message = TempData["warning"].ToString();
className = "warning";
}
else if (TempData["error"] != null)
{
message = TempData["error"].ToString();
className = "error";
}
<script>
$(document).ready(function () {
$('#flash').html('@HttpUtility.HtmlEncode(message)');
$('#flash').toggleClass('@className');
$('#flash').slideDown('slow');
$('#flash').click(function () { $('#flash').toggle('highlight') });
});
</script>
}
<section id="main">
@Flash.Show()
<div id="flash" style="display: none"></div>
@RenderBody()
</section>
最佳答案
TempData 属于 ControllerBase
类是 Controller 的基类,它不能被没有 Controller 的共享 View 访问,
一种可能的解决方法是将 Controller 传递给您的辅助方法或通过 HtmlHelper 访问它。
@helper SomeHelper(HtmlHelper helper)
{
helper.ViewContext.Controller.TempData
}
关于asp.net-mvc - 在 Helper 错误 : The name 'TempData' does not exist in the current context 中使用 TempData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8762709/
我是一名优秀的程序员,十分优秀!