我正在构建一个带有durandal的应用程序,以用电话盖捆绑。当我尝试运行Weyland Optimizer时,我会遇到一些问题。构建和优化在没有任何错误的情况下运行良好(我使用requirejs作为优化器),但是当我运行应用程序时,我的kendo ui图表会出现一个错误,说" unduarking typeerror:object [object object object]没有方法'kendochart'"。
如果我在Chrome中停下来的kendochart绑定正在进行并在控制台中键入" kendo"的Chrome,我将获得KendooBject,并且可以查看其属性,依此类推,因此它肯定在DOM中。
iv'e Google围绕着很多,在这里找到了一些线程,但似乎没有一个可以解决我的问题。例如,此线程或该线程。
我对图表有一个自定义的敲除绑定,如下所示。
我的weyland.config看起来像这样:
exports.config = function (weyland) {
weyland.build('main')
.task.jshint({
include: 'App/**/*.js'
})
.task.uglifyjs({
// not uglyfying anything now...
//include: ['App/**/*.js', 'Scripts/durandal/**/*.js', 'Scripts/custom/**/*.js']
})
.task.rjs({
include: ['App/**/*.{js,html}', 'Scripts/custom/**/*.js', 'Scripts/jquery/*.js', 'Scripts/durandal/**/*.js'],
exclude: ['Scripts/jquery/jquery-2.0.3.intellisense.js', 'App/main.js'],
loaderPluginExtensionMaps: {
'.html': 'text'
},
rjs: {
name: 'main',
baseUrl: 'App',
paths: {
'text': '../Scripts/text',
'durandal': '../Scripts/durandal',
'plugins': '../Scripts/durandal/plugins',
'transitions': '../Scripts/durandal/transitions',
'knockout': '../Scripts/knockout/knockout-2.3.0',
'kendo': 'empty:', <-- tried refering kendo.all.min, or dataviz.chart or the path
'jquery': '../Scripts/jquery/jquery-2.0.3.min',
'Helpers': '../Scripts/custom/helpers',
........ other scripts ......
},
deps: ['knockout', 'ko_mapping', 'command'],
callback: function (ko, mapping, command) {
ko.mapping = mapping;
}
//findNestedDependencies: true, **<-- tried both true and false here**
inlineText: true,
optimize: 'none',
pragmas: {
build: true
},
stubModules: ['text'],
keepBuildDir: false,
out: 'App/main-built.js'
}
});
};
// The custom binding for the kendo chart
define([
'knockout',
'jquery',
'Helpers',
'kendo/kendo.dataviz.chart.min'
], function (
ko,
$,
helpers,
kendoui
) {
function drawChart(element, values, options) {
$(element).kendoChart({ **<-- this is where I get an error**
... options for chart ...
});
}
// kendoUi data viz chart
ko.bindingHandlers.moodChart = {
init: function (element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {
//set the default rendering mode to svg
kendo.dataviz.ui.Chart.fn.options.renderAs = "svg"; **<-- this renders no errors**
// if this is a mobile device
if (kendo.support.mobileOS) {
// canvas for chart for you!
kendo.dataviz.ui.Chart.fn.options.renderAs = "canvas";
}
var values = ko.unwrap(valueAccessor());
setTimeout(function () {
drawChart(element, values);
}, 125);
}
};
});
我可能会补充说,一切正常运行在Web浏览器中运行未优化的代码(或此事的电话)。
我还试图在配置文件中的kendo路径上固定并向jQuery添加依赖关系,这似乎并没有任何区别。
任何帮助将不胜感激!
对于具有自己的依赖关系的大型框架,例如jQuery版本,我倾向于不将它们与自己的AMD模块捆绑在一起。我知道个人偏爱。看看如何通过.net示例中的普通脚本标签加载jQuery,淘汰和kendo
<body>
<div id="applicationHost"></div>
<script type="text/javascript" src="~/Scripts/jquery-1.9.1.js"></script>
<script type="text/javascript" src="~/Scripts/whateverKendoVersionGoesHere.js"></script>
<script type="text/javascript" src="~/Scripts/knockout-2.3.0.js"></script>
<script type="text/javascript" src="~/Scripts/bootstrap.js"></script>
<script type="text/javascript" src="~/Scripts/require.js" data-main="/App/main"></script>
</body>
这样,jQuery和淘汰赛将被加载为全球。在main.js
中,您必须要define
jquery
和knockout
才能使它们可用于Durandal(请参阅Main.js),因为Durandal在内部仍将其用作AMD模块。
requirejs.config({
paths: {
'text': '../Scripts/text',
'durandal': '../Scripts/durandal',
'plugins': '../Scripts/durandal/plugins',
'transitions': '../Scripts/durandal/transitions'
}
});
define('jquery', function () { return jQuery; });
define('knockout', ko);
define(['durandal/system', 'durandal/app', 'durandal/viewLocator'], function (system, app, viewLocator) {
...
});