原创 php課程設計,成績管理系統(附源碼)

  寫的比較簡單 下載地址:https://download.csdn.net/download/Huang0903/12011154(新)   成   績 管 理 系 統                   日期:2018.6.10  

原创 vue-cli3 build 出錯問題

Class constructor FileManager cannot be invoked without 'new' 降低less版本就可以了

原创 常用正則 ( JS )

常用正則 ( JS )  來源:   https://any86.github.io/any-rule/ 手機號 /^1((3[\d])|(4[5,6,9])|(5[0-3,5-9])|(6[5-7])|(7[0-8])|(8[1-3,

原创 git整理(三)

說明: 這裏記錄一些在visual studio中無法使用的操作,需要使用git bash來手動執行。 不追蹤web.config的變更 git update-index --assume-unchanged SourceCode/Sc

原创 git整理(二)

git stash 保存當前工作進度,會把暫存區和工作區的改動保存起來。執行完這個命令後,在運行`git status`命令,就會發現當前是一個乾淨的工作區,沒有任何改動。使用`git stash save 'message...'`可

原创 git整理(一)

1. git 主要分爲三個區域: 工作區、緩存區、倉庫。 2. 配置使用倉庫人員的用戶名、郵箱:  git config --global user.name "用戶名" git config --global user.ema

原创 js 數組去重

$scope.unique = function (array) { if (array && array.length > 0) { va

原创 vue-cli 配置跨域

1.找到index.js文件 2.在index.js中的dev{}中找到 在proxyTable{}中添加 '/api': { target: 'http://xxxxxx.com', // 接口

原创 npm install時報zlib: unexpected end of file錯誤

先刪除node_modules文件夾 執行: npm cache clean --force 3.重新安裝就好了

原创 連接遠程MySQL數據庫及“ ERROR 2003 (HY000): Can't connect to MySQL server on '47.100.113.180' (10060)”

連接遠程MySQL數據庫         命令行:mysql -u 用戶名 -p密碼 -h 服務器IP地址 -P 服務器端MySQL端口號 -D 數據庫名         例:mysql -uroot -p12345678 -h192.1

原创 .net core MD5加密

/// <summary> /// MD5加密 /// SecretKey:加密的密鑰 從配置文件中讀取 /// </summary> /// <param