我正在与Durandal构建一个与PhoneGap捆绑在一起的应用程序。当我试图运行weyland优化器时,我遇到了一些问题。 构建和优化运行没有任何错误(我使用requirejs作为优化)的罚款,但是当我运行该应用程序我的剑道UI图抛出一个错误说“遗漏的类型错误:对象的翻译:有没有方法‘kendoChart’”。
如果我暂停在调试模式中的铬,其中kendoChart结合在控制台中我得到的kendoobject并可以查看它的属性等正在发生,并键入“剑道”,所以这绝对是在DOM。
我已经谷歌了很多,并在这里发现了一些线索,但他们似乎都没有解决我的问题。例如this thread或this one。
我有一个图表的自定义敲除绑定,如下所示。
我的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);
}
};
});
我可能会补充一点,在网页浏览器(或手机)中运行未优化的代码一切正常。
我还试图在配置文件中填充kendo路径并为jquery添加依赖项,这似乎没有任何区别。
任何帮助将不胜感激!
答案 0 :(得分:3)
对于像kendo这样具有各自依赖关系的大型框架,例如: jquery版本,我倾向于不将它们与我自己的AMD模块捆绑在一起。个人喜好,我知道。 看看如何通过.NET example
中的普通脚本标记加载jquery,knockout和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和knockout将作为全局变量加载。在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) {
...
});