我在我的网站的管理面板上使用TinyMCE editor,所以我用 [AllowHtml] 装饰模型属性(tinymce的目标),我使用 Html.BeginForm ()在视图中。当我使用HTML字段提交表单时,一切正常。
但如果我以同样的方式使用重载 Html.BeginForm(“action”,“controller”),我会遇到问题,它会跳过 [AllowHtml] 抛出众所周知的Request.form异常。 我被迫在Action-Method上使用 [ValidateInput(false)] 来使其无异常地工作。 你知道为什么吗?在此先感谢您的澄清,
这是方案/ 项目:Asp.net Mvc 4:
模型/ Ricetta.cs
..
[Required(ErrorMessage = "Corpo Articolo vuoto")]
[AllowHtml]
public string corpoTesto { get; set; }
..
Controller / RicetteController.cs
..
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(RicettaViewModel modelloRicetta)
{
if (ModelState.IsValid) {
..
查看Ricette / Create 从RicetteController中的另一个Action方法调用为View(“Create”,modelObject)
@model WebAPP_MVC4.Areas.Admin.Models.RicettaViewModel
...
@using (Html.BeginForm("Create","Ricette",FormMethod.Post)){
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
....
<fieldset>
<legend>Corpo Ricetta ~</legend>
<div class="editor-label">
@Html.LabelFor(p=>p.ricetta.corpoTesto)
</div>
<div class="editor-field">
@Html.TextAreaFor(p=>p.ricetta.corpoTesto, new { @cols = 60, @rows = 20})
@Html.ValidationMessageFor(p=>p.ricetta.corpoTesto)
</div>
</fieldset>
..
答案 0 :(得分:6)
我做了快速测试,一切正常,Html.BeginForm()和Html.BeginForm(“action”,“controller”)之间的行为没有区别。也许这个问题的原因在于您没有向我们展示的源代码。
在我的代码下面(作品):
VieModel:
public class PostViewModel
{
[AllowHtml]
[Required]
public string Content { get; set; }
}
控制器:
public ActionResult Index()
{
return View("Create", new PostViewModel());
}
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(PostViewModel model)
{
if (ModelState.IsValid)
{
return Index();
}
return View(model);
}
查看:
@model SendHTmlTpControler.Models.PostViewModel
<html>
<head>
<script src="~/Scripts/tinymce/tiny_mce.js"></script>
<script type="text/javascript">
tinymce.init({
selector: "textarea",
toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
});
</script>
</head>
<body>
<h2>Create</h2>
@using (Html.BeginForm("Create", "Home", FormMethod.Post))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<div class="editor-label">
@Html.LabelFor(model => model.Content)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.Content, new { @cols = 60, @rows = 20 })
@Html.ValidationMessageFor(model => model.Content)
</div>
<p>
<input type="submit" value="Save" />
</p>
}
</body>
</html>