在啓用strictNullChecks
與Angular 4.1.1之後,獲取null
檢查的多個錯誤。我已經修復了它們的捆綁,但無法修復的this.form.get('username').value
。與其他人一樣,我也嘗試過,但無法修復錯誤。TypeScript strictNullChecks - 對象可能爲'null'
if (this.form.get('username') != null) {
body.append('username', this.form.get('username').value);
}