Angular 6 - 集成jQuery / JavaScript文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angular 6 - 集成jQuery / JavaScript文件相关的知识,希望对你有一定的参考价值。
我正在尝试将jQuery插件集成到我的Angular CLI项目中。此插件不是节点包。这是一个日历选择器(文件可以找到here)
我已将这些文件添加到项目的'src'文件夹中的assets文件夹中,并将路径(样式/脚本)添加到angular.json文件中。依然没有。我在这个项目上安装了jQuery并使用了npm jquery插件,它们工作正常。
有人可以上传使用链接插件的Angular CLI示例吗?
下面的例子只返回'this.calendarPicker.calendarPicker不是函数'的错误
我将非常感谢任何帮助。
应用程序组件打字稿
import {AfterViewInit, Component, ElementRef, OnInit, ViewChild} from '@angular/core';
import * as $ from 'jquery';
@Component({
selector: 'app-organiser-area',
templateUrl: './organiser-area.component.html',
styleUrls: ['./organiser-area.component.css']
})
export class OrganiserAreaComponent implements AfterViewInit {
@ViewChild('calendarPicker') picker: ElementRef;
calendarPicker: any;
constructor() { }
ngAfterViewInit() {
this.calendarPicker = $(this.picker.nativeElement);
const winWidth = $(window).width();
if (winWidth > 480) {
this.calendarPicker.calendarPicker({
monthNames: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
dayNames: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
useWheel: true,
callbackDelay: 100,
years: 2,
months: 3,
days: 5,
showDayArrows: true,
callback: function(cal) {
$('#selectedDate').html('Selected date: ' + cal.currentDate);
}
});
} else {
this.calendarPicker.calendarPicker({
monthNames: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
dayNames: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
useWheel: true,
callbackDelay: 100,
years: 1,
months: 3,
days: 3,
showDayArrows: true,
callback: function(cal) {
$('#selectedDate').html('Selected date: ' + cal.currentDate);
}
});
}
}
}
应用组件HTML
<main>
<div #calendarPicker class="calendarBox"><div id="calendar"></div></div>
</main>
this.calendarPicker.calendarPicker不是一个函数
您有此错误,因为您的库没有角度CLI的类型定义。变量calendarPicker只是你发现的变量,所以如何使用库。所以首先你需要像这样安装2个包
npm install jquery --save
npm install @types/jquery --save
下载所需的库并将该文件放在assets文件夹中
然后在architect => build of angular.json文件的scripts部分中,您需要为jquery lib添加路径。请相应地更改路径
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
....
"styles": [
"src/assets/css/jquery.calendarPicker.css"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"src/assets/js/jquery.calendarPicker.js"
]
},
然后在你的tsconfig.app.json中添加它
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"types": ["jquery"]
},
"exclude": ["test.ts", "**/*.spec.ts"]
}
最后将组件文件更改为此文件
import {
AfterViewInit,
Component,
ElementRef,
OnInit,
ViewChild
} from "@angular/core";
@Component({
selector: "app-organiser-area",
templateUrl: "./organiser-area.component.html",
styleUrls: ["./organiser-area.component.css"]
})
export class OrganiserAreaComponent implements AfterViewInit {
@ViewChild("calendarPicker") picker: ElementRef;
calendarPicker: any;
constructor() {}
ngAfterViewInit() {
this.calendarPicker = $(this.picker.nativeElement);
const winWidth = $(window).width();
$("#calendar").calendarPicker({
monthNames: [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
],
dayNames: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
useWheel: true,
callbackDelay: 500,
years: 1,
months: 3,
days: 4,
showDayArrows: false,
callback: function(cal) {
$("#mydate").html(cal.currentDate + "");
}
});
}
}
以上是关于Angular 6 - 集成jQuery / JavaScript文件的主要内容,如果未能解决你的问题,请参考以下文章
免费的JavaScript表单生成器库,集成了React、Angular、Vue、jQuery和Knockout。
JQuery 与 angularjs ng-model 的集成