Jestem dość nowy w Angular2 i mam mały problem:
W moim Login-Component-HTML mam dwa pola wyboru, które chcę powiązać w sposób dwukierunkowy z danymi do Login-Component-TypeScript.
To jest HTML:
<div class="checkbox">
<label>
<input #saveUsername [(ngModel)]="saveUsername.selected" type="checkbox" data-toggle="toggle">Save username
</label>
</div>
A to jest 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']);
}
Po kliknięciu pola wyboru otrzymuję poprawną wartość w kontrolerze (komponencie).
Ale jeśli zmienię wartość np. saveUsername
W komponencie, pole wyboru nie „dostanie” nowej wartości.
Więc nie mogę manipulować polem wyboru z komponentu (tak jak chcę to zrobić w ngOnInit
komponencie.
Dzięki za pomoc!