1. 程式人生 > >5月份開發問題整理

5月份開發問題整理

題解 where line tor ostc ria ner string bpa

1、BUG-In android7 phone can not slide above

註:Android 7.0以上,iScroll滑動緩慢遲鈍問題解決

What browser are you using?

There was a fix to iScroll‘s handling of passive events in Chrome 55, but a new bug appeared in Chrome 56 (confirmed in the iScroll demos).

EDIT: Scouring the GitHubs, rbmeyers (on the github team), has been posting everywhere with a simple CSS fix:

touch-action: none;

https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action

2、React 使用ES6+語法時 事件綁定疑惑

在props裏使用 onClick={ this.handleClick.bind(this) } 或者 onClick={ (e) => this.handleClick(e) } 或者 onClick={ ::this.handleClick } 都會產生性能問題,所以現在eslint在語法檢查時就會阻止這幾種寫法,問題原因是每一次render的時候如果遇到這些寫法,都會重新用handleClick函數與this去綁定從而重新創建一個新的函數,影響性能。

如果使用下面的寫法則不會每次都創建:

// 1. 
constructor() {
    this.handleClick = this.handleClick.bind(this);
}
handleClick(e) { /* ... */ }
// 2. 
handleClick = (e) => { /* ... */ };

3、webpack-dev-server + HostAdmin,導致invalid host header

訪問webpack啟動的server,直接使用localhost和127.0.0.1都可以正常訪問,但是修改了host,使用hostname訪問,就會顯示invalid host header。

原來新版的webpack-dev-server修改了一些東西,默認檢查hostname。如果hostname不是配置內的,將不可訪問。應該是考慮一些安全的因素,才有這種配置。之前刪除過一次node_modules,重新安裝之後出現了這個問題。

修復方法

disableHostCheck:true

或者

public: ‘local.kingsum.biz‘

看文檔應該是webpack-dev-server: v1.16.4這個版本合並進來的,所以升級到這個版本之後要註意這個問題

4、select2 初始化默認值

xxx.val(status).trigger(‘change‘)

https://github.com/select2/select2/issues/4659

me.$statusSelect.select2({
	data:  [{
      		id : ‘1‘,
      		text : ‘有效‘
      	},{
      		id : ‘0‘,
      		text : ‘無效‘
      	}
    ],
}).val(status).trigger(‘change‘);

5、如何移除 input type="number" 時瀏覽器自帶的上下箭頭?

https://segmentfault.com/q/1010000000687882

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"]{
  -moz-appearance: textfield;
}

5月份開發問題整理