Requirejs和嵌套模块

时间:2015-03-03 14:37:39

标签: requirejs nested

我使用pnotify.js有以下逻辑:

    //File notification.js
define(['require','pnotify' ],
        function(require,PNotify){

           require( [ 'pnotify.nonblock', 'pnotify.desktop' ],function(){
               PNotify.desktop.permission();
           });
        });

并在另一个文件中 //文件notification2.js

define(['notification' ],
    function(Notification){
            return function(msg){
                new PNotify({
                    title: 'Desktop Notice',
                    text: msg,
                    desktop: {
                        desktop: true
                    },
                    nonblock: {
                        nonblock: true
                    }
                });
            }
    });

这工作正常,但我想知道是否有办法只在一个文件中执行此操作? 我正在调用我的函数:

define([
    'notification2'
], function(Notification){

//some code
  var notif = Notification("hello");
//some code

0 个答案:

没有答案