我要再试一次,我一直在努力寻找一种解决方案,在带有knocket和requirejs的单页应用程序中使用jqwidgets。
我的index.html:
<script src="app/require.config.js"></script>
<script data-main="app/startup" src="bower_modules/requirejs/require.js"/>
我的require.config.js(主要由yeoman生成):
var require = {
baseUrl: ".",
paths: {
"bootstrap": "bower_modules/components-bootstrap/js/bootstrap.min",
"crossroads": "bower_modules/crossroads/dist/crossroads.min",
"hasher": "bower_modules/hasher/dist/js/hasher.min",
"jquery": "bower_modules/jquery/dist/jquery",
"knockout": "bower_modules/knockout/dist/knockout",
"jqxknockout": "bower_modules/jqwidgets/jqwidgets/jqxknockout",
"jqx-all": "bower_modules/jqwidgets/jqwidgets/jqx-all",
"knockout-projections": "bower_modules/knockout-projections/dist/knockout-projections",
"mapping": "bower_modules/bower-knockout-mapping/dist/knockout.mapping",
"signals": "bower_modules/js-signals/dist/signals.min",
"text": "bower_modules/requirejs-text/text"
},
shim: {
"bootstrap": {export: "$", deps: ["jquery", "mapping", 'jqx-all'] }
}
};
我的startup.js(由index.html调用)
define(['jquery', 'knockout', './router', 'bootstrap', 'knockout-projections', 'jqx-all'], function ($, ko, router) {
ko.components.register('nav-bar', { require: 'components/nav-bar/nav-bar' });
ko.components.register('home-page', { require: 'components/home-page/home' });
ko.components.register('study-selection', { require: 'components/study-selection/study-selection' });
ko.applyBindings({ route: router.currentRoute });
});
它使用的router.js也来自yeoman:
return new Router({
routes: [
{ url: '', params: { page: 'home-page' } },
{ url: 'study-selection', params: { page: 'study-selection' } }
]
});
function Router(config) {
var currentRoute = this.currentRoute = ko.observable({});
ko.utils.arrayForEach(config.routes, function(route) {
crossroads.addRoute(route.url, function(requestParams) {
currentRoute(ko.utils.extend(requestParams, route.params));
});
});
activateCrossroads();
}
function activateCrossroads() {
function parseHash(newHash, oldHash) { crossroads.parse(newHash); }
crossroads.normalizeFn = crossroads.NORM_AS_OBJECT;
hasher.initialized.add(parseHash);
hasher.changed.add(parseHash);
hasher.init();
}
});
每当我打开索引页面时,我都可以看到jqx-all已加载。然而,当我尝试在任何页面中使用jquery小部件时,它们都不会被呈现。study-selection.html:
<div id="jqxCheckBox" data-bind="jqxCheckBox: { checked: checked, disabled: disabled, width: '120px' }" style='margin-bottom: 10px;'>jqxCheckBox</div>
study-selection.js:
define(['knockout', 'text!./study-selection.html'], function (ko, templateMarkup) {
function Studyselection(params) {
this.message = ko.observable('Hello from the studySelection1 component!');
this.disabled = ko.observable(false);
}
return { viewModel: Studyselection, template: templateMarkup };
});
我一直在浏览http://www.jqwidgets.com/jquery-widgets-documentation/documentation/requirejs/requirejs_tutorial_knockout.htm但我找不到解决问题的办法。有没有调试的方法?我是不是错过了什么?
非常感谢您的帮助。
谨致问候,
我终于想通了。似乎我不得不放:
$('#jqxcheckbox').jqxCheckBox({ width: 120, height: 25 });
为了呈现studyselection.js文件中的复选框。尽管在jqwidgets演示页面上显示的示例中没有显示这一点。