在cshtml文件中的C#块代码之间插入html标签

我想在C#块代码之间使用html标签,我试过了,但出现错误。 我怎样才能在cshtml文件中的C#块代码之间插入html标签?

错误是:

只有赋值调用增量递减和新的对象表达式可以用作语句

只有赋值调用增量递减等待,新的对象表达式可以用作语句 在这里输入图像描述

@{
    Func<List<Comment>, Comment, HelperResult> ShowTree = null;
    ShowTree = (items, node) =>
    {
        @<text>
            <ul>
                @foreach (var comment in items)
                {

                }
            </ul>
         </text>;
        return null;
    };

}

更新:当我将文本移到{}外部时,我也遇到了一些错误。 看这张图片。 在这里输入图像描述

更新2:我已经使用@:但仍然存在问题。 这是;expected

我怎么解决这个问题?

在这里输入图像描述

@{
Func<List<Comment>, Comment, int, HelperResult> ShowTree = null;
ShowTree = (items, parentItem, parentId) =>
{
    var count = items.Count(p => p.ParentId == parentId);
    if (count > 0)
    {
        @:<ul>
            foreach (var item in items.Where(p => p.ParentId == 
 parentId).ToList())
            {
            @:<li>
                string collapseId = string.Format("collapse_{0}", item.Id);
                @:<a class="btn btn-link" data-toggle="collapse" 
 href="#@{collapseId}" aria-expanded="True" aria-controls="@{collapseId}">
                    @:<span class="fa fa-minus" aria-hidden="true"> 
 Commenter Name</span>
                @:</a>
                    @:<div class="collapse show" id="@{collapseId}">
                        @:<div class="card">
                                @:<p>item.Description</p>
                        @:</div>
                            ShowTree(items, item, item.Id);
                    @:</div>
            @:</li>
            }
        @:</ul>
    }
    return null;
  };
};

更新3:浏览器中包含错误消息的最新代码

@using Jahan.Beta.Web.App.Helper
@using Jahan.Beta.Web.App.Models
@using Microsoft.AspNetCore.Mvc.Razor
@using Jahan.Beta.Web.App.Helper
@model List<Comment>

@{
   Func<List<Comment>, Comment, int, HelperResult> ShowTree = null;
   ShowTree = (items, parentItem, parentId) =>
   {
   var count = items.Count(p => p.ParentId == parentId);
   if (count > 0)
   {
   @:<ul>
   @<text>@{
        foreach (var item in items.Where(p => p.ParentId ==    
   parentId).ToList())
        {
            string collapseId = string.Format("collapse_{0}", item.Id);
            <li>
                <a class="btn btn-link" data-toggle="collapse" href="@collapseId" aria-expanded="True" aria-controls="@collapseId">
                <span class="fa fa-minus" aria-hidden="true"> Commenter Name</span></a>
                <div class="collapse show" id="@collapseId"><div class="card"><p>@item.Description</p></div>
                    @ShowTree(items, item, item.Id);
                </div>
            </li>
        }
}</text>

@:</ul>
}
return null;
};
}


 @{
 Func<List<Comment>, HelperResult> CreateTree = null;
 CreateTree = commentList => new Func<List<Comment>, HelperResult>(
 @<text>@{
    List<Comment> nodesRoot = commentList.Where(p => p.ParentId == 
 null).ToList();
    <ul>
        @foreach (var comment in nodesRoot)
        {
            <li>
                <p>@comment.Description</p>
                @ShowTree(commentList, comment, comment.Id);
            </li>
        }
    </ul>
  }
   </text>)(null);
  }

<div class="media mb-4">
<div class="media-body">
    @CreateTree(Model)
</div>

</div>

最新的代码

在浏览器中显示的错误消息

编译处理此请求所需的资源时发生错误。 请查看以下具体的错误细节并适当修改您的源代码。 生成的代码

; 预期


对于cshtml use @: C#代码块进行内联转义。 例如:

@{
    Func<List<Comment>, Comment, HelperResult> ShowTree = null;
    ShowTree = (items, node) =>
    {
        @:<ul>
            foreach (var comment in items)
                {

                }
        @:</ul>
        return null;
    };
}

正如我所看到的,您希望通过将Html与C#代码混合来呈现某些内容,而不是将您的C#代码插入到cshtml文件中,您可以创建自定义Html帮助程序,它将如下所示:

     public static class CustomHtmlHelper
        {
            public static IHtmlContent ShowTree(this IHtmlHelper htmlHelper)
            {
                Func<List<Comment>, Comment, HelperResult> ShowTree = null;

                var builder = new StringBuilder();

                ShowTree = (items, node) =>
                {
                    builder.Append("<ul>");

                    foreach (var comment in items)
                    {
                        builder.Append("<li>"+comment.Content+"</li>");

                    }
                    builder.Append("</ul>");
                    return null;
                };

                //Just for testing purposes only

                var comments = new List<Comment> { new Comment { Content = "Comment 1" }, new Comment { Content = "Comment 2" } };

                ShowTree(comments, new Comment());

                //
                return new HtmlString(builder.ToString());

            }
        }
  • 在cshtml中

    @ Html.ShowTree()


  • 为什么不把<text><ul>移到{}之外。 喜欢这个 :

    <text>
    <ul>
        @{
            Func<List<Comment>, Comment, HelperResult> ShowTree = null;
            ShowTree = (items, node) =>
            {
    
                foreach (var comment in items)
                {
                }
                return null;
            };
    
        }
    </ul>
    </text>;
    

    将你的代码放在多个支架中

    @{
        var commentList = new List<string>();
    }
    <text>
        <ul>
            @foreach (var comment in commentList)
            {
                <li>@comment</li>
            }
    
        </ul>
    </text>;
    
    链接地址: http://www.djcxy.com/p/41053.html

    上一篇: Inserting html tags between C# block code in cshtml file

    下一篇: When should I use GET or POST method? What's the difference between them?