我想动态地将片段添加到编辑器工具栏kendo ui 我用这个代码
@(Html.Kendo().Editor()
.Name("textarea_question")
.HtmlAttributes(new { @class = "span5", style = "height:10px;" })
.Tools(tools => tools.Clear()
.Bold().Italic().Underline()
.Formatting()
.JustifyLeft()
.JustifyCenter()
.JustifyRight()
.JustifyFull()
.Snippets(s =>
{
foreach (var item in Model.pipingText)
{
s.Add(item.Name, item.Name);
}
})
)
)
但它有错误
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
请帮助我!!!
答案 0 :(得分:0)
从 pipingText 集合中获取的这些值可能有些错误,因为其余的代码看起来很好。您可能应该使用类型集合而不是使用 var 。
500状态的例外情况究竟是什么。提供有关异常的更多信息。