导致 pickadate 的 Aurelia 项目不是函数
Aurelia project resulting in pickadate is not a function
我收到以下错误,但我不知道如何修复它。
我更像是一名传统的 JS 开发人员,最近一直专注于后端。
我尝试手动加载特定的 JS 文件,但它不起作用。
我仍然收到错误消息。
当前错误为:
aurelia-logging-console.js:54 ERROR [templating-resources] TypeError: $(...).pickadate is not a function
at HTMLDocument.eval (c-field-date.js:80)
at fire (jquery.js:3187)
at Object.add [as done] (jquery.js:3246)
at jQuery.fn.init.jQuery.fn.ready (jquery.js:3496)
at InputDate._attachPlugin (c-field-date.js:78)
at InputDate.attached (c-field-date.js:51)
at Controller.attached (aurelia-templating.js:3513)
at View.attached (aurelia-templating.js:1558)
at ViewSlot.add (aurelia-templating.js:1726)
at eval (aurelia-templating.js:4534)
我试过的破解方法如下,还是失败了:
$.getScript("/libs/pickadate.js-3.5.6/lib/picker.js", function(){
//alert("Script loaded and executed.");
// here you can use anything you defined in the loaded script
});
我听到有人提到我们可能有一个错误 JQuery 被加载了两次,但我不确定如何调试它。
该项目正在使用 jspm
和 npm
。
关于如何调试 and/or 解决这个问题有什么想法吗?
注意:这不是重复的。另一个问题与错误 "pickadate is not a function"
无关
问题是 JQuery 被加载了两次。删除重复项解决了问题。
我收到以下错误,但我不知道如何修复它。 我更像是一名传统的 JS 开发人员,最近一直专注于后端。
我尝试手动加载特定的 JS 文件,但它不起作用。 我仍然收到错误消息。
当前错误为:
aurelia-logging-console.js:54 ERROR [templating-resources] TypeError: $(...).pickadate is not a function
at HTMLDocument.eval (c-field-date.js:80)
at fire (jquery.js:3187)
at Object.add [as done] (jquery.js:3246)
at jQuery.fn.init.jQuery.fn.ready (jquery.js:3496)
at InputDate._attachPlugin (c-field-date.js:78)
at InputDate.attached (c-field-date.js:51)
at Controller.attached (aurelia-templating.js:3513)
at View.attached (aurelia-templating.js:1558)
at ViewSlot.add (aurelia-templating.js:1726)
at eval (aurelia-templating.js:4534)
我试过的破解方法如下,还是失败了:
$.getScript("/libs/pickadate.js-3.5.6/lib/picker.js", function(){
//alert("Script loaded and executed.");
// here you can use anything you defined in the loaded script
});
我听到有人提到我们可能有一个错误 JQuery 被加载了两次,但我不确定如何调试它。
该项目正在使用 jspm
和 npm
。
关于如何调试 and/or 解决这个问题有什么想法吗?
注意:这不是重复的。另一个问题与错误 "pickadate is not a function"
无关问题是 JQuery 被加载了两次。删除重复项解决了问题。