發表文章

目前顯示的是 8月, 2022的文章

[Angular] 在.ts裡面使用pipe的功能

  https://stackoverflow.com/questions/35159079/is-it-possible-to-use-a-pipe-in-the-code First declare the pipe in the  providers  of your module: import { YourPipeComponentName } from 'your_component_path'; @NgModule({ providers: [ YourPipeComponentName ] }) export class YourServiceModule { } Then you can use  @Pipe  in a component like this: import { YourPipeComponentName } from 'your_component_path'; class YourService { constructor(private pipe: YourPipeComponentName) {} YourFunction(value) { this.pipe.transform(value, 'pipeFilter'); } }

[Angular] 將日期格式用內建的DatePipe轉成自定義的string格式

https://stackoverflow.com/questions/40377103/how-to-convert-date-into-this-yyyy-mm-dd-format-in-angular-2 component.ts   constructor (       public datepipe : DatePipe ,   ) {} function(){   // 日期轉換     const ConvertedDate = this . datepipe . transform (       this . myForm . controls . myDate . value ,       ' yyyyMMdd ' ,     ) ; } 其中 'yyyyMMdd' 可以自訂為其他格式 像是 'yyyy/MM/dd' 之類的 就會輸出 2022/08/23 app.module.ts import { DatePipe } from ' @angular/common ' ;   providers : [      DatePipe ,   ] ,