loading jquery plugins with require js

前端 未结 2 1382
有刺的猬
有刺的猬 2020-12-23 17:53

I am new to require js, and the problem is I don\'t really understand how to load jQuery plugins.

I would like to load multiple plugins but I already have problems w

相关标签:
2条回答
  • 2020-12-23 18:11

    When you're loading your dependencies, requirejs loads them all concurrently. When you're getting that error, it means that your plugin is being loaded and executed before jQuery has been loaded. You need to set up a shim to tell requirejs that the plugin depends on jQuery already being loaded.

    Also, most jQuery plugins are not AMD aware, so you'll also want to tell requirejs what to look for to tell it the script loaded correctly. You can do this with an 'exports' entry in your shim.

    I don't believe jqueryUI is AMD-aware either, so an entry in the shim is probably in order for that too. I don't use bootstrap, so I'm not sure if you'll need anything there.

    Here's a shim for your plugin and jQueryUI, add this to your call to requirejs.config:

    shim: {
        'plugins\chosen': {
            deps: [ 'jquery' ],
            exports: 'jQuery.fn.chosen'
        },
        'jquery-ui': {
            deps: [ 'jquery' ],
            exports: 'jQuery.ui'
        }
    }
    

    You may still have some issues that I'm not seeing yet, but this should at least get you moving forward. Also, this is probably worth a read: http://requirejs.org/docs/api.html#config-shim. I would definitely recommend reading that whole page if you haven't yet.

    0 讨论(0)
  • 2020-12-23 18:21

    Hi I will like to tell you here that if you want to include non AMD scripts (which do not include define() call) , we use shim config . I will like to explain with a simple example of jquery hightlight plugin.

    this will be your config file where you define all paths

    paths:{
        "jquery":"/path/to/jquery",
        "jgHighlight":"/path/to/jquery.highlight"
    },
       shim:{
    
            deps:["jquery"], // jquery.highlight dependeps on jquery so it will load after jquery has been loaded 
            exports:"jqHighlight"
    
       }
    

    Now in a module which starts with define , include jqHighlight like this

    define(["requireModulesArray","jgHighlight"],function(requiredModulesAliasArray){
    
       // no need to include any alias for jgHighlight in function(...)
       //use it like this now
    
         $("#divT").highlight("someText");
    
    });
    

    Similarly other non amd modules will be included and used. Thanks

    0 讨论(0)
提交回复
热议问题