0

这是一个奇怪的问题,我在同一页面上有两个 ckeditor 实例,当我发布表单时,我总是得到第二个的空值。

你能帮我弄清楚我的问题吗?我哪里错了?

以下是详细信息,

创建.cshtml

@model SevenNice.Models.Product

@using (Html.BeginForm("Create", "Product", FormMethod.Post, new { enctype = "multipart/form-data", id = "newproduct" }))
{
    // ... some other elements

    @Html.TextAreaFor(m => m.Description_0, new { @class = "ckeditor" })
    @Html.TextAreaFor(m => m.Description_1, new { @class = "ckeditor" })

    // ... some other elements
}

调试步骤

1-

在此处输入图像描述

2-

在此处输入图像描述

4

1 回答 1

2

这是 CKEditor 4.2 中的一个错误: https ://dev.ckeditor.com/ticket/10689

它应该在下一个版本中修复。同时,您可以在本地应用补丁或恢复到旧版本。

于 2013-09-07T15:15:34.183 回答