尝试将jqplot与jquery mobile,marionette和requirejs一起使用

时间:2013-07-30 08:48:30

标签: jquery-mobile backbone.js requirejs jqplot marionette

我正在尝试将jqplot与Jquery mobile,marionette和requirejs一起使用。我已经在头标记中包含了所有jqplot所需的CSS以及脚本文件,但是当我尝试使用下面的代码绘制图表时

define([ 'jquery', 'plot' ], 
    function($) {
console.log("Success..Inside Offer Page Script.");
console.log("Plot..."+$.jqplot);
console.log("jquery..."+$);
$.jqplot.config.enablePlugins = true;
var s1 = [ 2, 6, 7, 10 ];
var ticks = [ 'a', 'b', 'c', 'd' ];

plot1 = $.jqplot('chart1', [ s1 ], {
    seriesDefaults : {
        renderer : $.jqplot.BarRenderer,
        pointLabels : {
            show : true
        }
    },
    axes : {
        xaxis : {
            renderer : $.jqplot.CategoryAxisRenderer,
            ticks : ticks
        }
    },
    highlighter : {
        show : false
    }
});
});

它给了我像

这样的错误
Uncaught TypeError: undefined is not a function jqplot.barRenderer.js:41
(line 41: $.jqplot.BarRenderer.prototype = new $.jqplot.LineRenderer();)

Uncaught TypeError: Cannot call method 'push' of undefined jqplot.pointLabels.js:377
(line 377: $.jqplot.postSeriesInitHooks.push($.jqplot.PointLabels.init);)

上面代码定义中的图是

define([
  '../scripts/ext_libs/jquery.jqplot'
],
function () {
var plot;
require([
    '../scripts/ext_libs/jqplot.barRenderer',
    '../scripts/ext_libs/jqplot.pointLabels',
    '../scripts/ext_libs/jqplot.categoryAxisRenderer',
  ],
function () {
    plot = $.jqplot;
});
return plot;

});

任何人都可以帮助我如何解决这些错误。使用带有requirejs的jqplot是他们的问题吗?

提前致谢。

3 个答案:

答案 0 :(得分:2)

我没有使用牵线木偶,但其他一切都很好用。我有一个像这样的jqplot模块:

define([
    '../js/plugins/jqplot/jquery.jqplot'
  , 'css!../js/plugins/jqplot/jquery.jqplot'
  ],
  function () {
      var plot;
      require([
            '../js/plugins/jqplot/plugins/jqplot.barRenderer'
          , '../js/plugins/jqplot/plugins/jqplot.logAxisRenderer'
          , '../js/plugins/jqplot/plugins/jqplot.categoryAxisRenderer'
          , '../js/plugins/jqplot/plugins/jqplot.canvasAxisTickRenderer'
          , '../js/plugins/jqplot/plugins/jqplot.canvasTextRenderer'
          , '../js/plugins/jqplot/plugins/jqplot.pointLabels'
          , '../js/plugins/jqplot/plugins/jqplot.enhancedLegendRenderer'
          ],
      function () {
          plot = $.jqplot;
      });
      return plot;
  }
);

我需要通常从我的页面脚本中要求:

 require(["plot"], function (plot) {
   // do something here with plot or... $.jqplot
 };

您应该可以立即使用$.plot,因为一旦您需要该模块,jqplot将在$上可用。

修改
试试这个:

define([ 'jquery', 'plot' ], 
    function($) {
        console.log("Success..Inside Offer Page Script.");
        console.log($);
        console.log($.jqplot);
        $.jqplot.config.enablePlugins = true;
        var s1 = [ 2, 6, 7, 10 ];
        var ticks = [ 'a', 'b', 'c', 'd' ];

        plot1 = $.jqplot('chart1', [ s1 ], {
            seriesDefaults : {
                renderer : $.jqplot.BarRenderer,
                pointLabels : {
                    show : true
                }
            },
            axes : {
                xaxis : {
                    renderer : $.jqplot.CategoryAxisRenderer,
                    ticks : ticks
                }
            },
            highlighter : {
                show : false
            }
        });
    });

答案 1 :(得分:2)

比赛迟到但....以上不起作用因为需要异步返回,所以能够返回jqplot而没有加载任何jqplot插件!

下面的异步安全解决方案

讨厌的问题,因为它是三个依赖的链

jqplot插件需要jqplot需要jquery,我有一个基于与上面相同的简单解决方案

首先执行你的requirejs“main.js”配置

requirejs.config({
    paths: {
        "jquery": "path/to/jquery-1.10.2.min",

        // WORKAROUND : jQuery plugins + shims
        "jqplot.core": "path/to/jquery-jqplot-1.0.8.min",
        "jqplot": "jquery-jqplot-module-with-plugins-1.0.8"
    },
    shim: {
        "jqplot.core": {deps: ["jquery"]},
        "jqplot": {deps: ["jqplot.core"]}
    }
});

创建一个名为“jquery-jqplot-module-with-plugins-1.0.8.js”的包装器文件模块文件,其中包含:

// wraps jquery jqplot plugin in define statement
define([
    "jquery",
    "path/to/jqplot.highlighter.min",
    "path/to/jqplot.cursor.min",
    "path/to/jqplot.dateAxisRenderer.min",
    "path/to/jqplot.canvasTextRenderer.min",
    "path/to/jqplot.canvasAxisLabelRenderer.min",
    "path/to/jqplot.enhancedLegendRenderer.min",
    "path/to/jqplot.pieRenderer.min",
    "path/to/jqplot.donutRenderer.min",
], function($) {
    var jqplot;
    jqplot = $.jqplot;
    return jqplot;
});

然后当你需要jqplot与这些插件时,只需调用“jqplot”,它将加载“jquery”然后“jqplot.core”然后所有的jqplot模块,然后最后返回jqplot对象:)

require(["jquery", "jqplot"], function ($, $jqplot) {
    console.log("Success..Inside Require JS");
    console.log("Plot...", $.jqplot, $jqplot);
});

define(["jquery", "jqplot"], function ($, $jqplot) {
    console.log("Success..Inside Define JS");
    console.log("Plot...", $.jqplot, $jqplot);
});

多田! :)

ps jquery插件是邪恶的,没有建议如何解决这种情况,只是一个事实陈述

欢呼声

蚂蚁

答案 2 :(得分:0)

plot初始化之前,似乎会返回require(...)。我曾经有过共同的解决方案,我的plot部分填充了。我最终设置了shim中的所有jqplot插件并相应地更改了我的`plot.js',如同here所示。

requirejs.config

shim: {
    'jqplot': ['jquery'],
    'lib/jquery/jqplot/plugins/jqplot.canvasTextRenderer': ['jqplot'],
    'lib/jquery/jqplot/plugins/jqplot.pieRenderer': ['jqplot'],
    'lib/jquery/jqplot/plugins/jqplot.barRenderer': ['jqplot'],
    'lib/jquery/jqplot/plugins/jqplot.categoryAxisRenderer': ['jqplot'],
    'lib/jquery/jqplot/plugins/jqplot.canvasAxisLabelRenderer': ['jqplot'],
    'lib/jquery/jqplot/plugins/jqplot.enhancedLegendRenderer': ['jqplot'],
    'lib/jquery/jqplot/plugins/jqplot.highlighter': ['jqplot'],
}

plot.js

define(['lib/jquery/jqplot/plugins/jqplot.canvasTextRenderer',
        'lib/jquery/jqplot/plugins/jqplot.pieRenderer',
        'lib/jquery/jqplot/plugins/jqplot.barRenderer',
        'lib/jquery/jqplot/plugins/jqplot.categoryAxisRenderer',
        'lib/jquery/jqplot/plugins/jqplot.canvasAxisLabelRenderer',
        'lib/jquery/jqplot/plugins/jqplot.enhancedLegendRenderer',
        'lib/jquery/jqplot/plugins/jqplot.highlighter'],
        function() {
    return $.jqplot;
});