Indeed new component instance are created when navigating.
You have several options to hold your value:
- Store it in a app-bound service
- Store it in a persistent storage (localStrage / sessionStorage)
this plunker http://plnkr.co/edit/iEUlfrgA3mpaTKmNWRpR?p=preview implements the former one. Important bits are
the service (searchService.ts)
export class SearchService {
searchText: string;
constructor() {
this.searchText = "Initial text";
}
}
Binding it when bootstraping the app, so that the instance is available through the whole app:
bootstrap(App, [
HTTP_BINDINGS,ROUTER_BINDINGS, SearchService,
bind(LocationStrategy).toClass(HashLocationStrategy)
])
.catch(err => console.error(err));
Injecting it in your SearchPage component: (not that you should not override the value in the constructor since a new component instance is created upon navigation)
export class SearchPage{
searchService: SearchService;
constructor(searchService: SearchService) {
this.searchService = searchService;
}
}
Updating the service value on input:
<input class="form-control" [value]="searchService.searchText"
(input)="searchService.searchText = $event.target.value">
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…