最近更新的頁面
【bootstrap-table】相關連結
bootstap-table 官網 bootstrap table filterBy数据刷选过滤器和查询条件 - itxst.com
require和include的不同
include('func.php'); include 'func.php'; require('lib.php'); require('lib.php'); incl...
Laravel migration 可使用的欄位類型
可使用的欄位類型 資料庫 Schema 生成器包含表格常用的各種欄位類型,如下所列: 程式碼 說明 $table->id(); $table->bigIncrements('id') ...
Laravel Repository
Day13-[Laravel 資料夾目錄與內容] Repository - iT 邦幫忙::一起幫忙解決難題,拯救 IT 人的一天 (ithome.com.tw)
大於等於小於 縮寫
lt:less than 小於 le:less than or equal to 小於等於 eq:equal to 等於 ne:not equal to 不等於 ge:greater t...
【Git】TorotoiseGit 占用資源解決方法
【原因】 TorotoiseGit 會掃描硬碟內有git 版控資料夾的的異動,並產生相對應的圖示,有時會造成主機磁碟讀寫過高 【解決】限縮掃描範圍 任一個資料夾按右鍵->【To...
【JS】相關資源
教學 现代 JavaScript 教程
Laravel_log_permission
config/logging.php 'daily' => [ 'driver' => 'daily', 'path' => storage_...
Laravel 建立專案
先安裝composer ,在切換到放置專案的目錄composer global require laravel/installer laravel new example-app c...
PHP_判斷json物件
function isJson($string) { json_decode($string); return json_last_error() === JSON_ERR...
【MySQL】 mysqldump參數大全
IT 研究室 ( 前IT DBA's 資訊站): [轉載] MySQL mysqldump參數大全 (jaychu649.blogspot.com) 要注意的是--master-data...
【Python】刪除 window 下執行時產生的暫存檔
for /f "delims=" %F in ('Dir /B /S .\*.py ^|findstr /IE "\\migrations\\[^\\]*.py"^|findstr /IEV "...
【tip】format 程式碼排版
快速鍵 在Windows Shift + Alt + F 在Mac Shift + Option + F 在Ubuntu Ctrl + Shift + I 存檔自動格式化(設定 C...
【tip】修改設定檔(settings.json)
圖形化介面 修改 setting.json
【ES6】其他新語法
預設值 function sum(a, b = 1) { // 加入預設值避免錯誤 return a + b; } console.log(sum(1));
【ES6】陣列方法
https://www.youtube.com/watch?v=_vFuDQ_6Xt8
【Openresty】Nginx Lua的 執行階段
nginx 執行步驟 1、post-read 读取请求内容阶段,nginx读取并解析完请求头之后就立即开始运行;例如模块 ngx_realip 就在 post-read 阶段注册了处理程序,...
【tip】常用settings
修改 settings.json { "workbench.editor.wrapTabs": true, // tab數量超過一行是否摺疊顯示(false 會出現scroll bar...
Laravel_Validation
參考: Laravel Validation 經驗談. 如何確認 request body的參數是符合我們預期的?… | by Kidd Chan | K88D | Medium La...
Vue 建立專案
# install vue cli npm install -g @vue/cli # 建立 my-project 專案 vue create my-project 選第三個 ...