工作中經常用到git,在git add .
的時候,通常不需要把依賴,測試,日誌等檔案新增到倉庫,此時需要在專案資料夾內建立.gitignore
檔案,自己常用的配置如下:
.ds_store
node_modules
/dist
# local env files
.env.local
.env.*.local
# log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
build/env.js
前端開發常用方法
淺拷貝和深拷貝 let arr arr 淺拷貝 object.assign arr 淺拷貝 clonedeep arr 深拷貝 json parse json stringify arr 深拷貝 不能拷貝 constructor 方法 陣列去重 uniquekey arr,key let resul...
WEB前端專案開發流程
這個環節是由專案經理完成,專案經理首先和客戶進行交流,了解客戶的需求,然後分析專案的可行性,如果專案可以被實現,專案經理寫出專案需求文件交給設計師完成後續的開發。這個環節主要是ui設計師參與,ui設計師根據產品需求分析文件,對產品的整體美術風格 互動設計 介面結構 操作流程等做出設計。負責專案中各種...
前端開發常用的函式
在專案例項中,難免要做一些容錯處理或者是對例項的型別判斷,那麼就可以把這部分的判斷整理成公共的js檔案,供全域性使用。利用object.prototype.tostring.call可以判斷物件的型別 變數的兩種型別值 1 基本型別 string,number,boolean,undefined,n...