7

如何从 javascript 文件中直接指向 .cshtml 视图?例如,为什么我不能将 .cshtml 视图与 angular.js 一起使用?就像在这个例子中:

 .directive('encoder', ($timeout) => {
        return {
            restrict: 'E',
            transclude: true,
            scope: 'isolate',
            locals: { service: 'bind' },
            templateUrl: 'encoderTemplate.cshtml' // <-- that's not possible?
        }
    });

当然可以有一个返回任何你想要的操作方法,但我很好奇是否可以直接引用剃刀视图。

4

2 回答 2

10

如评论中所述,您不能直接提供 .cshtml 文件,但是,如果您愿意,可以使用控制器来呈现内容:

public class TemplateController : Controller
{
    // create a ~/Views/Template/Encoder.cshtml file
    public PartialViewResult Encoder()
    {
        return PartialView();
    }
}

然后像你一样引用它@Url.Action

{
    ....
    templateUrl: '@Url.Action("Encoder", "Template")'
}

来自评论

如果您的大部分 JavaScript 代码都在具有 Razor 访问权限的内容之外(例如外部 .js 文件),您仍然可以利用 Url 构建器,只需稍作不同。例如,我可能会做类似的事情:

public class TemplateController : Controller
{
    // Add a child method to the templates controller that outputs default
    // configuration settings (and, since it's a child action, we can re-use it)
    [ChildActionOnly]
    public PartialViewResult Index()
    {
        // You could build a dynamic IEnumerable<ConfigRef> model
        // here and pass it off, but I'm just going to stick with a static view
        return PartialView();
    }
}

~/Views/Template/Index.cshtml

<script type="text/javascript">
  if (typeof window.App === 'undefined'){
    window.App = {};
  }
  App.Templates = {
    Encoder: '@Url.Action("Encoder", "Template")',
    Template1: '@Url.Action("Template1", "Template")',
    Template2: '@Url.Action("Template2", "Template")'
  };
</script>
@*
   the template files would then reference `App.Templates.Encoder`
   when they need access to that template.
*@
@Scripts.Render("~/js/templating")

Index.cshtml(或任何视图)

@* ... *@
@{ Html.RenderAction("Index", "Template"); }
@* ... *@
于 2013-01-31T17:44:05.470 回答
6

另一种选择是:

1.添加带有EncoderTemplate视图的TemplatesController

public class TemplatesController : Controller
{

     public ActionResult EncoderTemplate()
     {

           return View();
     }

}

2.将 Layout = null 添加到 EncoderTemplate.schtml 视图

@{
    Layout = null;
}

<div>Your html goes here</div>

3.指向EncoderTemplate.schtml,如下图

.directive('encoder', ($timeout) => {
    return {
        restrict: 'E',
        transclude: true,
        scope: 'isolate',
        locals: { service: 'bind' },
        templateUrl: '/Templates/EncoderTemplate' // you should not add .schtml
    }
});
于 2014-02-02T12:59:29.867 回答