工作總結3
相容性
1.在chrome中,設定父元素display:flex;align-items:center;這樣可以讓子元素垂直居中,而自元素設定margin-top的時候就是相對現在位置的上邊距,firefox依然是以父元素頂部為基準,所以自元素絕對定位的時候設定top,left比較安全。
2.ime-mode可以設定喚起輸入法,但是目前支援度並不高,在caniuse中顯示只有ie11以上支援,但是實測Firefox支援,其他不支援,主要用來禁止輸入中文。
3.使用a標籤的download屬性可以實現檔案下載,但是在IE下並不能自動改變下載檔案的名稱。使用如下方法解決。
const isIE = 'ActiveXObject' in window;
const downloadname = "your name"
const blob = new Blob([this.config.url], {'type': 'text/plain'});
const url = window.URL.createObjectURL(blob);
const a = document.getElementById('download');
a.setAttribute('href', url);
a.setAttribute('download', `${downloadname}.xlsx`); //這個name是下載名.字尾名
if (isIE) {
// 相容IE11無法觸發下載的問題
navigator.msSaveBlob(blob, `${this.config.title}.xlsx`);
}
4.判斷是否是IE瀏覽器
function isIE() { //ie?
if (!!window.ActiveXObject || "ActiveXObject" in window)
return true;
else
return false;
}
常用方法
1.關於拖拽
一般我們直接給拖拽元素繫結相關事件,但是會發現如果滑鼠快速移動時,拖拽元素跟不上滑鼠的位置,這是因為快速拖動時滑鼠有可能移出該元素導致move事件失效。因此我們一般繫結在沾滿全屏的某個父元素上,比如body。
2.vue-touch
加入點選一個按鈕(btn1)然後彈出一個彈出框,彈出框的按鈕(btn2)跟頁面的按鈕有重合點,而且頁面按鈕(btn1)用tag繫結事件,彈出層按鈕(btn2)使用click繫結事件。當你恰好點選到重合位置的時候,觸發btn1的瞬間就會觸發btn2的事件,因此,建議用統一方式。(應該是Android才會有)
效能問題
1.storage
在使用sessionStorage儲存資料時的發現:因為我想讓資料放在一個名稱空間下,所以設定一個頂級物件
let storage = {
//key:value
}
sessionStorage.setItem('storage', storage)
每次儲存或改變資料都要先把整個storage取出來,再改變對應的資料,之後再重新存入快取,但是發現這樣會造成頁面卡頓。之前用的沒問題,但是突然就這樣,在切換頁面的時候這樣操作快取很明顯就可以看到(比如vue路由切換),暫時沒找到原因。
2.防止微信瀏覽器的“x5 核心”出現。
其實只要不讓頁面滾動就可以了,但是某些位置還是需要滾動的,就需要區域性放開。
document.body.addEventListener('touchmove', function(evt) {
//In this case, the default behavior is scrolling the body, which
//would result in an overflow. Since we don't want that, we preventDefault.
if(!evt._isScroller) {
evt.preventDefault();
}
},{
passive:false,
capture:false
});
document.addEventListener('touch', function(e){
e.preventDefault();
}, false)
給需要滾動的元素設定屬性即可。
dom.addEventListener('touchmove', function(e){
e._isScroller = true;
})
其他
1.可以使用try{}catch(){}和async/await來捕獲非同步錯誤
2.使用window.onerror監聽錯誤,如果錯誤物件為圖片,可以將圖片設定為預設圖片,但是要注意預設圖片也載入出錯的問題。
const noImg = require('demo.png');
window.addEventListener('error', function(data) {
const target = data.target;
if(target) {
switch (target.nodeName) {
case 'IMG': (() => {
var img = new Image();
img.src = noImg;
//判斷圖片大小是否大於0 或者 圖片高度與寬度都大於0
if (img.filesize > 0 || (img.width > 0 && img.height > 0)) {
target.src = noImg;
} else {
//預設圖片也不存在的時候
}
})();
break;
default: console.warn({
message: data.message,
line: data.lineno,
col: data.colno,
errpath: data.path,
filename: data.filename,
url: data.url
});
}
} else {
console.warn({
message: data.message,
line: data.lineno,
col: data.colno,
errpath: data.path,
filename: data.filename,
url: data.url
});
}
return true;
}, true);
相關文章
- Swift 3 遷移工作總結Swift
- 工作總結 2016 3 15
- 工作總結
- 工作總結2
- 找工作總結
- 工作總結--ESB工作平臺
- Rxjava工作原理總結RxJava
- 工作心得和總結
- 工作經驗總結
- 我的工作總結
- 團隊工作總結
- 找工作總結薦
- 週記-工作小總結
- IYPT助教工作總結
- 工作十一年總結
- 工作週會的總結
- 08年終工作總結薦
- 個人工作總結(轉)
- 7.9日工作總結
- 【工作總結】工作為什麼總是手忙腳亂
- Git概念及工作原理總結Git
- 遊戲前端工作流程總結遊戲前端
- IT開發工作分類【總結】
- ReactNative 專案工作總結React
- 九年程式人生 工作總結
- OneAPM 工作兩年總結
- 工作總結--工單排程
- 工作總結--系統架構架構
- 工作日誌總結二
- 工作日誌總結一
- 【工作總結】工作累死累活,結果越做越差怎麼辦?
- OOP 1~3總結OOP
- SAP工作流觸發總結
- 2016年終工作總結
- 2018年工作總結
- DBA日常工作職責總結
- 團隊工作總結(十三天)
- 一年工作的總結 (轉)