美文网首页
require.js使用: shim参数

require.js使用: shim参数

作者: 打不过就加入他 | 来源:发表于2016-07-23 23:23 被阅读153次

    在实际项目中,有些组件不符合AMD规范该如何,此时需要使用shim参数来进行相应配置

    example

    //people模块  people.js
    ;(function(){
    function People(){
    }
    People.prototype = {}
    window.people = People;
    })()
    
    require.config({
        paths: {
            'people': 'control/people.js'  
      },
      shim:{
            'people':{
                deps: ['jquery'],
                exports: 'p'
            }
      }
    })
    require(['people'],function(){
        new  p()
    })
    

    相关文章

      网友评论

          本文标题:require.js使用: shim参数

          本文链接:https://www.haomeiwen.com/subject/lpmwjttx.html