BLOG LIST AngularScullyGithub 04May 2021 1 minutes to read Scully 佈署到 github 終於!用 scully 把先前的 Blog 翻寫完成了!!! 灑花~接著當然是要把頁面佈署到 github 讓其他人看到啦不然也只能自己自 high XD 安裝首先安裝 angular-cli-ghp READ MORE lifescully 01May 2021 1 minutes to read Blog 改版 使用 Scully 翻寫 前情提要在這裡 https://mtwmt.github.io/angular/scully_install因為這個契機,使得開始動手這一切,將原本使用 hexo 改用 Angular Scully READ MORE AngularAngular library 17Jan 2021 2 minutes to read 如何將 Angular library 裡的 scss/sass 正確導出 因專案越來越龐大,需要將一些共用元件抽出來做 library 放到 npm 上,在其他專案在開發時也能一起使用,以便節省開發時間。照著官網的教學建立: https://angular.tw/guide READ MORE Angular 27Dec 2020 1 minutes to read Angular viewchild undefined with ngIf 情境當 angular 裡的 範本變數裡使用到 ngIf,在執行範本變數的時後會報錯,出現 undefined,無法操控程式碼如下html```html```component```tsexport READ MORE JavaScriptES6 08Dec 2020 3 minutes to read JS Template Strings ( 模版字串 / 樣版字串 ) 過去寫法 以 jquery 為例```js$('result').append( 'There are ' + basket.count + ' ' + 'items in you READ MORE JavaScriptES6 07Dec 2020 2 minutes to read JS 解構賦值 解構賦值,按照對應位置,進行賦值,如同鏡子般映射 陣列 基本用法```javascriptlet [a, b, c] = ['aa', 'bb', 'cc'];// a = 'aa';// b = ' READ MORE HexoGithub 06Dec 2020 1 minutes to read Hexo:Github 上傳佈署後 檔名大小寫問題 最近在整理以前寫過的文章分類,把一些檔名的大小寫稍做調整,發現文章佈署到 git 上後,git 對於檔名大小寫的更動 檔案不會更新,導致頁面出現 404 找不到頁面 解決方法在 hexo 的目錄下 找 READ MORE JavaScript 30Nov 2020 4 minutes to read JS Object 物件的屬性特徵 物件本身```javascriptvar obj = { a: 1, b: 2, c: 3,};console.log('obj', obj);```印出來後 如圖所示修改物件裡面屬性的值可以是 READ MORE Angular 03Nov 2020 2 minutes to read Angular HttpParams 這篇記錄著關於如何使用 Angular `HttpParams`且 HttpParams 接收的參數值必定要轉為`字串`才可以在 service.ts 引入```tsimport { HttpClie READ MORE Angular 20Oct 2020 3 minutes to read Angular Router 筆記 在 app.module.ts 引入 RouterModule```tsimport { RouterModule } from '@angular/router';@NgModule({ Rout READ MORE PREV 1 2 3 4 5 11 NEXT