码迷,mamicode.com
首页 > 编程语言 > 详细

MVC Razor与javascript混编(js中嵌入razor)

时间:2018-05-13 13:52:02      阅读:656      评论:0      收藏:0      [点我收藏+]

标签:java   字符   官网   com   general   text   ref   int   mon   

其中的关键是输出js上的纯文本内容,让浏览器解析为其中的js代码

 

<script>
    BUI.use(‘common/main‘,function(){
        var config = [
        {
            id: ‘1‘,
            menu:
            [
         @{ 
             int ruiyalel = (int)Session["ruiyaLev"];
             int happyfamilylel = (int)Session["happyfamilyLev"];


             if (ruiyalel > 0) {
              <text>
              {
                  text: ‘瑞亚官网‘, items: [{ id: ‘3‘, text: ‘瑞亚新闻‘, href: ‘DBSystem/ruiya/News‘ }, ]
              },
              </text>
             }
             if (happyfamilylel > 0){
              <text>
              {
                  text: ‘全家乐‘, items: [{ id: ‘4‘, text: ‘新闻管理‘, href: ‘DBSystem/happyfamily/News‘ },
                                         { id: ‘5‘, text: ‘活动管理‘, href: ‘DBSystem/happyfamily/Activity‘ },
                                         { id: ‘6‘, text: ‘综合管理‘, href: ‘DBSystem/happyfamily/GeneralMes‘ }, ]
              },
              </text>
             }


         }            
            ]


        }];


        new PageUtil.MainPage({
            modulesConfig : config
        });


    });
    </script>

 

 

@:表示后面直接输出字符串

          <text></text>表示里面输出的是字符串

          两种方式可以任选一种,注意<text>不是html标签,他是razor语法中专门用来输出字符串的

MVC Razor与javascript混编(js中嵌入razor)

标签:java   字符   官网   com   general   text   ref   int   mon   

原文地址:https://www.cnblogs.com/sjqq/p/9031530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!