我是概念脚本加载器的新手,我正在尝试使用RequireJS加载jQuery和easyUI。我不确定如何在加载jQuery后引入easyUI。有人可以提供我需要做的简单解释吗?
requirejs.config({
"baseUrl": "app/lib",
"paths": {
"app": "/app",
"jquery": "//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min",
"easyui": "app/lib/jquery-easyui/jquery.easyui.min"
}
});
define(["jquery"], function($){
console.log($);
//Not sure how to link in the easyUI
});
答案 0 :(得分:0)
定义jQuery
后,您可以使用require()
来easyui
define(["jquery"], function($){
require(["easyui"], function () {
//easyui is now usable
});
});