Angular - Uncaught Error: AdminLTE requires jQuery at adminlte.min.js:14
Angular - Uncaught Error: AdminLTE requires jQuery at adminlte.min.js:14
我正在 Angular 7 中使用 AdminLTE 主题开展项目。当我提供应用程序时,我在控制台上收到此错误:
Uncaught Error: AdminLTE requires jQuery
at adminlte.min.js:14
这是adminlte.min.js
的第14行
if("undefined"==typeof jQuery)throw new Error("AdminLTE requires jQuery");+function(a){"use strict";function b(b){return this.each(function(){var e=a(this),g=e.data(c);if(!g){var h=a.extend({},d,e.data(),"object"==typeof b&&b);e.data(c,g=new f(e,h))}if("string"==typeof g){if(void 0===g[b])throw new
demo.js:7 Uncaught ReferenceError: $ is not defined
at demo.js:7
这是demo.js
的第7行
$(function () {
我尝试阅读文档,发现我做的是正确的。但是,当我评论 demo.js 参考时,错误并不存在。但是我需要这个javascript。
请问如何解决。
确保 jQuery 已导入 and jQuery 在 adminlte.min.js and 之前导入AdminLTE 函数的初始化在 $(function () { /** Initialize AdminLTE functions **/}
.
$(function () {}
基本上是 "Yup I have loaded jQuery functions, now let's execute $.
whatever is required from AdminLTE"
的一种表达方式
我卸载了AdminLTE-2.4.15主题。重新安装到较低版本的 AdminLTE-2.4.8。然后,问题解决了。
谢谢
我正在 Angular 7 中使用 AdminLTE 主题开展项目。当我提供应用程序时,我在控制台上收到此错误:
Uncaught Error: AdminLTE requires jQuery at adminlte.min.js:14
这是adminlte.min.js
的第14行if("undefined"==typeof jQuery)throw new Error("AdminLTE requires jQuery");+function(a){"use strict";function b(b){return this.each(function(){var e=a(this),g=e.data(c);if(!g){var h=a.extend({},d,e.data(),"object"==typeof b&&b);e.data(c,g=new f(e,h))}if("string"==typeof g){if(void 0===g[b])throw new
demo.js:7 Uncaught ReferenceError: $ is not defined at demo.js:7
这是demo.js
的第7行$(function () {
我尝试阅读文档,发现我做的是正确的。但是,当我评论 demo.js 参考时,错误并不存在。但是我需要这个javascript。 请问如何解决。
确保 jQuery 已导入 and jQuery 在 adminlte.min.js and 之前导入AdminLTE 函数的初始化在 $(function () { /** Initialize AdminLTE functions **/}
.
$(function () {}
基本上是 "Yup I have loaded jQuery functions, now let's execute $.
whatever is required from AdminLTE"
我卸载了AdminLTE-2.4.15主题。重新安装到较低版本的 AdminLTE-2.4.8。然后,问题解决了。
谢谢