https://blog.yowko.com/moment-js/
npm install moment --save
菜鳥資訊管理師 x 眼角微濕
https://blog.yowko.com/moment-js/
npm install moment --save
子(對話窗)
父(頁面)
原理是:當子元件的按鈕被觸發(想要關掉對話窗)時,會對父元件出發$emit('closeRegist');,項父元件申請說[子元件提出這個事項],父元件就會去[找到@closeRegist這個事項],並執行觸發事件closeRegistDialog(關掉對話窗),任務完成。
Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
超时时间已到。超时时间已到,但是尚未从池中获取连接。出现这种情况可能是因为所有池连接均在使用,并且达到了最大池大小。
前提:程式已經有close&dispose
可能發生的問題:
這個錯誤通常跟應用程式的兩個地方有關:
此錯誤訊息很容易就可以重現。例如,你可以寫個程式,裡面用一個迴圈不斷開啟新的資料庫連線,但都不要釋放它。很快地,例如開啟 100 個連線之後,就會出現這個錯誤訊息。
引用 https://www.huanlintalk.com/2012/05/net-connection-pool.html
監測效能監視器Connection Pool
https://dotblogs.com.tw/rainmaker/2017/04/26/143316
https://blog.darkthread.net/blog/sql-conn-pooling-experiment/
https://ithelp.ithome.com.tw/articles/10210068
https://www.cnblogs.com/delphinet/archive/2010/09/29/1838494.html
https://www.cnblogs.com/eaglet/archive/2011/10/31/2230197.html
Connection Pool (連線池)
不重整改動頁面的情況下能取得部分頁面資料
-vertical dots->更多工具>網路開發工具->network -> 可以看到網頁有多少個網路請求
載入順序 index.html->img.src(html順序)->all.js(html順序)
100
–199
),200
–299
),300
–399
),400
–499
),500
–599
).axios.get('https://hexschool.github.io/ajaxHomework/data.json') .then(function (response) { //response是axios整理好的資訊 console.log(response.data);//data本身 console.log(response.status);//狀態馬 console.log(response.statusText); console.log(response.headers); console.log(response.config); });
function sayHello(){ //函式宣告 console.log("Hello"); Shakehand();//函式中執行函式 } function Shakehand(){ //函式宣告 console.log("Shake hand"); }
sayHello();//執行
function calculate(num1,num2){ //函式宣告 return num1+num2; } let total =calculate(1,2);//total為3
const el=document.querySelector('h1');//選取h1 const el2=document.querySelector('.header');//css選擇器 選取header class
const el=document.querySelectorAll('h1');//el會以陣列回傳el[0].el[1]..選取
el.textContent="new word"//複寫h1文字
el2.innerHTML =ˋ<h1 class="header2">h1標題</h1>ˋ//可以單引號雙引號包覆;插入class為header2的h1段落 el2.innerHTML =ˋ<h1 class="header2">${name}</h1>ˋ
const link=document.querySelector('a'); link.setAttribute("href","https:...");//更換連結屬性的連結網址("屬性","加入參數")
console.log(link.getAttribute("href"));//網址 console.log(link.innerHTML);//link<a>內標籤//輸出<span>123</span>//原html<a href=..><span>123</span>></a> console.log(link.textContent);//123