色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

angular cli jquery

錢浩然2年前8瀏覽0評論

Angular CLI 可以讓你輕松地創建和構建 Angular 應用程序。如果您需要使用 jQuery 在應用程序中進行一些操作,則可以通過 angular.json 文件來引入 jQuery。

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"projects": {
"your-project-name": {
"architect": {
"build": {
"options": {
"scripts": [
"node_modules/jquery/dist/jquery.min.js"
]
}
},
"test": {
"options": {
"scripts": [
"node_modules/jquery/dist/jquery.min.js"
]
}
}
}
}
}
}

此配置文件可以通過手動編寫或在終端中使用 "ng config" 命令生成。您需要將 "your-project-name" 替換為您的項目名稱。

現在,您可以在組件類中引入jQuery并使用它。

import { Component, OnInit } from '@angular/core';
import * as $ from 'jquery';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
ngOnInit(): void {
$("#button").click(function() {
// do something
});
}
}

在組件類中,您可以使用 import * as $ from 'jquery' 導入 jQuery,并在 ngOnInit() 函數中使用它。

這就是如何在 Angular CLI 應用程序中使用 jQuery。