3

我正在尝试在骨干网渲染的页面上放置一个 ladda 按钮,其中包含 require.js 以及引导组件。然而,我得到了

"Uncaught ReferenceError: Spinner is not defined".

我从原始 ladda.js 中剪下缩小的 spin.js 并将它们放在同一目录中。

Shi'ed ladda 如下:

require.config ({
   paths: {
            //jquery, underscore, backbone here
            spin : 'libs/ladda/spin',
            ladda: 'libs/ladda/ladda'
   },

   shim: {
        ladda: {
            deps: ['spin'],
            exports: 'Ladda'    
    }
}
});

在主干视图中:

define([
  'jquery',
  'underscore',
  'backbone',
  'bootstrap',
  'spin',
  'ladda',
 ], function($, _, Backbone, Bootstrap, Spinner, ladda){
    render: function () {
        //templating

        console.log ('Spinner: ' + typeof Spinner);
        Ladda.create ($('button'));    
   }
});

我可以看到typeof Spinner是一个功能。Spinner.name 属性为“p”。Spinner.name 不应该是“Spinner”而不是“p”吗?或者“p”是从缩小变量继承的?

为了使 Spinner 在 ladda.js 的范围内可见,我错过了哪些其他步骤?感谢任何建议。

谢谢你。

更新: 感谢 Bass Jobsen 的建议,使用 hakimel commited spin.jsSpinner已加载但错误仍然存​​在。在 Chrome 开发工具控制台下方:

chrome devtool 截图

4

2 回答 2

3

基于 github.com/hakimel/Ladda/pull/7,我将 spin.js 重写为像 Ladda 本身这样的类。我使用定义代替 require (http://bardevblog.wordpress.com/2013/01/05/re-learning-backbone-js-require-js-and-amd/)。现在微调器也是一个对象。

Ladda.bind()似乎不起作用(或者我不明白会发生什么)。您可以创建一个新的按钮对象Ladda.create()

见: http: //plnkr.co/edit/DuIVFP0UP8sSoek9gEZc

//https://github.com/requirejs/example-jquery-cdn   
requirejs.config({
    //"baseUrl": "js/lib",
    enforceDefine: true,
    "paths": {
      "app": "app",
      "jquery": "//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min",
      "spin": "spin",
      "ladda": "ladda"
    },
    shim: {
        "spin": {exports: "Spinner"},
        "ladda": {
            depends: "spin",
            exports: "Ladda"
        },



        }
});

// Load the main app module to start the app
requirejs(["app/main"]);

应用程序/main.js

define(["jquery",'ladda','spin'], function($,ladda) {
    //the jquery.alpha.js and jquery.beta.js plugins have been loaded.
    $(function() {
      console.log("$: " + typeof $);
      console.log("ladda: " + typeof Ladda);
      console.log("spin: " + typeof Spinner);

      Ladda.bind($('button')[0]); //don't work ????????????
      //return;
      //Ladda.create('.ladda-button');
      var l = Ladda.create($('button')[1]);

    l.start();

// Will display a progress bar for 50% of the button width
l.setProgress( 5 );

// Stop loading
l.stop();

// Toggle between loading/not loading states
l.toggle();

// Check the current state
l.isLoading();


    });
});
于 2013-06-11T22:00:11.977 回答
0

不应该ladda与小写字母一起使用l。因为这是你的 require 函数中参数的名称。

ladda.create ($('button'));  
于 2013-06-11T06:27:24.593 回答