Razor模板的JavaScript错误

时间:2012-12-26 16:55:12

标签: wpf razor template-engine razor-2

我正在使用Razor v2模板引擎从WPF呈现HTML页面,但在模板中从JavaScript中获取错误。违规代码如下:

13    <script type="text/javascript">
14      var ie7 = (document.all && !window.opera && window.XMLHttpRequest) ? true : false;
15      if(!ie7){
16          WebFontConfig = {
17              google: { families: [ 'Droid Serif', 'Droid Sans', 'Satisfy', 'PT Sans' ] }
18          };
19      (function() {
20          var wf = document.createElement('script');
21          wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
22          '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
23          wf.type = 'text/javascript';
24          wf.async = 'true';
25          var s = document.getElementsByTagName('script')[0];
26          s.parentNode.insertBefore(wf, s);
27          })();
28      }
29      </script>

错误是:

{c:\Users\Echilon\AppData\Local\Temp\0sdz13xb.0.cs(15,28) : error CS1002: ; expected}

我尝试将<text>代码中的脚本部分包装起来无济于事。

1 个答案:

答案 0 :(得分:0)

我最终使用的是Spark view engine,它支持<ignore>标记来指定要忽略的文字。