Jquery加载正常,但是当我查看网络选项卡时,我看到它再次被加载,这是我试图阻止的。 jquery的初始加载是应用程序顶层的脚本标记。我在查看文档之后使用了下面的代码,希望将jquery定义为模块(如果它已经存在)。但是我最终还是把它装了两次。
!function (window) {
requirejs.config({
baseUrl: basePath + "/testing/kendo_scripts",
});
if (typeof jQuery === 'function') {
console.log(jQuery);
console.log("In jquery check");
define('jquery', function () { return jQuery; });
}
有关如何阻止此事的任何建议?