我正在开发一个项目,其中另一个开发人员使用ember.js框架开发了一个UI作为独立的客户端唯一解决方案.
我被要求将这项工作转移到ASP.NET MVC3项目.
问题是,ember.js在语法中使用大括号和双括号,这似乎会干扰MVC3使用的剃刀引擎.
我是否正确地认为2种技术(ASP MVC3和ember.js)不能一起工作?
解决方法
一种方法是在资源文件(resx)中使用把手模板,并在类似于此的匿名函数中将它们添加到Ember:
<script type="text/javascript" src="path/to/ember.js"> <script type="text/javascript" src="path/to/your/app.js"> <script type="text/javascript"> (function() { Ember.TEMPLATES["your template name"] = Ember.Handlebars.compile('<%= template as string from the resource file goes here %>'); })(); App.initialize(); </script>