angular – PrimeNG日历错误 – 未定义JQuery

前端之家收集整理的这篇文章主要介绍了angular – PrimeNG日历错误 – 未定义JQuery前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的应用程序中使用 PrimeNG calendar.当我运行代码时,我收到错误

ReferenceError: jQuery is not defined.

其他PrimeNG指令工作正常.如果我删除< p-calendar>错误消失了.

我在我的应用中导入并包含了日历.
顺便说一下,我正在使用最新版本的角度,路由器和表格.在此之前我有这个issue并通过更新表单提供程序修复它.

<p-calendar [(ngModel)]="date"></p-calendar>

Stacktrace摘录:

ReferenceError: jQuery is not defined
at Calendar.ngAfterViewInit (eval at (07002),:44:90)
at DebugAppView._View_AddShipmentComponent0.detectChangesInternal (AddShipmentComponent.template.js:930:59)
at DebugAppView.AppView.detectChanges (eval at (07003),:243:14)
at DebugAppView.detectChanges (eval at (07003),:348:44)

您需要添加依赖项:
<!-- Datetimepicker,Slider,Schedule -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-timepicker-addon/1.6.1/jquery-ui-timepicker-addon.min.js"></script>
原文链接:https://www.f2er.com/angularjs/141023.html

猜你在找的Angularjs相关文章