使用具有相同名称但具有不同参数的帮助程序

时间:2011-06-09 14:38:07

标签: html razor helpers webmatrix

我的页面 Project.cshtml 中有两个帮助程序。这是代码:

@helper Fields()
{
    @* How to call a helper Fields(-1)?  *@
}

@helper Fields(int projectID)
{
  @* Code *@
}

我可以在另一个助手中调用助手吗?

1 个答案:

答案 0 :(得分:3)

我会使用optional arguments而不是提供一些方法重载:

@helper Fields(int projectId = 0){
    if(projectId > 0){
        ....
    }
    ....
}