ฉันค่อนข้างใหม่กับ Angular2 และฉันมีปัญหาเล็กน้อย:
ใน Login-Component-HTML ของฉันฉันมีช่องทำเครื่องหมายสองช่องซึ่งฉันต้องการผูกข้อมูลสองทางเข้ากับ Login-Component-TypeScript
นี่คือ HTML:
<div class="checkbox">
<label>
<input #saveUsername [(ngModel)]="saveUsername.selected" type="checkbox" data-toggle="toggle">Save username
</label>
</div>
และนี่คือ Component.ts:
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { Variables } from '../../services/variables';
@Component({
selector: 'login',
moduleId: module.id,
templateUrl: 'login.component.html',
styleUrls: ['login.component.css']
})
export class LoginComponent implements OnInit {
private saveUsername: boolean = true;
private autoLogin: boolean = true;
constructor(private router: Router, private variables: Variables) { }
ngOnInit() {
this.loginValid = false;
// Get user name from local storage if you want to save
if (window.localStorage.getItem("username") === null) {
this.saveUsername = true;
this.autoLogin = true;
console.log(this.saveUsername, this.autoLogin);
} else {
console.log("init", window.localStorage.getItem("username"));
}
}
login(username: string, password: string, saveUsername: boolean, autoLogin: boolean) {
this.variables.setUsername(username);
this.variables.setPassword(password);
this.variables.setIsLoggedIn(true);
console.log(saveUsername, autoLogin);
//this.router.navigate(['dashboard']);
}
หากฉันคลิกช่องทำเครื่องหมายฉันจะได้รับค่าที่ถูกต้องในคอนโทรลเลอร์ (ส่วนประกอบ)
แต่ถ้าฉันเปลี่ยนค่าตัวอย่างsaveUsername
ในองค์ประกอบช่องทำเครื่องหมายไม่ได้ "รับ" ค่าใหม่
ดังนั้นฉันไม่สามารถจัดการช่องทำเครื่องหมายจากส่วนประกอบ (เช่นฉันต้องการที่จะทำในngOnInit
ในองค์ประกอบ
ขอบคุณสำหรับความช่วยเหลือของคุณ!