フォームからサービスにデータを渡そうとしていますが、成功しません。メインページとログインページの間にルーティングシステムを実装することができました。 LoginComponentからのユーザー名とパスワードをVehicleServiceに渡して、現在のログオンユーザーを表示したいと思います。私が試した:Angular2経路上のデータ値を渡す
- はVehicleServiceにデータを渡すためにLoginServiceを作成します。
ここでは、コードです:
ルータ
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { VehicleComponent } from './vehicle.component';
import { LoginComponent } from './login.component';
const routes: Routes = [
{ path: '', redirectTo: '/vehicle', pathMatch: 'full' },
{ path: 'vehicle', component: VehicleComponent },
{ path: 'login', component: LoginComponent }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
VehicleService
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import { Md5 } from 'ts-md5/dist/md5';
import { User } from './user';
import 'rxjs/add/operator/map';
@Injectable()
export class VehicleService {
private defUrl = 'dummywebiste.com';
constructor(private http: Http) { }
getVehicle(username?: string, password?: string) {
const url = (!username || !password) ? this.defUrl : 'dummywebiste.com' + username + '/' + Md5.hashStr(password);
return this.http.get(url)
.map(res => res.json());
}
}
簡体VehicleComponent
は、LoginComponent
から
@Component({
selector: 'vehicle-json',
templateUrl: './vehicle.html',
providers: [VehicleService]
})
export class VehicleComponent {
public vehicles: GeneralVehicle[];
constructor(private vehicleService: VehicleService, private router: Router) {
this.vehicleService.getVehicle().subscribe(vehicle => {
this.vehicles = vehicle;
});
}
toLogin(): void {
console.log("toLogin button");
this.router.navigate(['/login']);
}
}
簡体LoginComponent
@Component({
selector: 'login',
templateUrl: './login.html',
providers: [VehicleService]
})
export class LoginComponent implements OnInit {
public user: FormGroup;
ngOnInit() {
this.user = new FormGroup({
username: new FormControl('', Validators.required),
password: new FormControl('', Validators.required)
});
}
constructor(public vehicleService: VehicleService, private location: Location, private router: Router) { }
onSubmit(user) {
this.vehicleService
.getVehicle(user.value.username, user.value.password)
.subscribe(user => {
this.user = user;
//this.user.reset();
this.router.navigate(['/vehicle']);
console.log("Submit button");
});
}
goBack(): void {
console.log("Back button");
this.location.back();
}
}
onSubmit()
私はデータを送信する際に任意のデータを渡しません。私が1つのコンポーネントw/oルーティングシステムを使用していたとき、それは問題ありませんでした。
ありがとうございました。
onSubmitメソッドが実行されないか、フォームから値を抽出できないということを意味しますか? – Alex
..あなたはログイン後、ユーザー情報が従うであろう車両へのナビゲート後にそれを期待していますか?値が存在するようにLoginComponentの値をサブスクライブしていますが、そのコンポーネントから移動するとユーザーが失われています。アプリで使用できるように保存する場合は、localstorageまたはserviceを使用してユーザーの値を隠す必要があります。 – Alex