Otrzymuję błąd i nie mogę znaleźć przyczyny. Oto błąd:
EXCEPTION: Error during instantiation of LocationStrategy! (RouterOutlet -> Router -> Location -> LocationStrategy).
angular2.dev.js:23514 EXCEPTION: Error during instantiation of LocationStrategy! (RouterOutlet -> Router -> Location -> LocationStrategy).BrowserDomAdapter.logError @ angular2.dev.js:23514BrowserDomAdapter.logGroup @ angular2.dev.js:23525ExceptionHandler.call @ angular2.dev.js:1145(anonymous function) @ angular2.dev.js:14801NgZone._notifyOnError @ angular2.dev.js:5796collection_1.StringMapWrapper.merge.onError @ angular2.dev.js:5700run @ angular2-polyfills.js:141(anonymous function) @ angular2.dev.js:5719zoneBoundFn @ angular2-polyfills.js:111lib$es6$promise$$internal$$tryCatch @ angular2-polyfills.js:1511lib$es6$promise$$internal$$invokeCallback @ angular2-polyfills.js:1523lib$es6$promise$$internal$$publish @ angular2-polyfills.js:1494(anonymous function) @ angular2-polyfills.js:243microtask @ angular2.dev.js:5751run @ angular2-polyfills.js:138(anonymous function) @ angular2.dev.js:5719zoneBoundFn @ angular2-polyfills.js:111lib$es6$promise$asap$$flush @ angular2-polyfills.js:1305
angular2.dev.js:23514 ORIGINAL EXCEPTION: No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.BrowserDomAdapter.logError @ angular2.dev.js:23514ExceptionHandler.call @ angular2.dev.js:1154(anonymous function) @ angular2.dev.js:14801NgZone._notifyOnError @ angular2.dev.js:5796collection_1.StringMapWrapper.merge.onError @ angular2.dev.js:5700run @ angular2-polyfills.js:141(anonymous function) @ angular2.dev.js:5719zoneBoundFn @ angular2-polyfills.js:111lib$es6$promise$$internal$$tryCatch @ angular2-polyfills.js:1511lib$es6$promise$$internal$$invokeCallback @ angular2-polyfills.js:1523lib$es6$promise$$internal$$publish @ angular2-polyfills.js:1494(anonymous function) @ angular2-polyfills.js:243microtask @ angular2.dev.js:5751run @ angular2-polyfills.js:138(anonymous function) @ angular2.dev.js:5719zoneBoundFn @ angular2-polyfills.js:111lib$es6$promise$asap$$flush @ angular2-polyfills.js:1305
angular2.dev.js:23514 ORIGINAL STACKTRACE:BrowserDomAdapter.logError @ angular2.dev.js:23514ExceptionHandler.call @ angular2.dev.js:1157(anonymous function) @ angular2.dev.js:14801NgZone._notifyOnError @ angular2.dev.js:5796collection_1.StringMapWrapper.merge.onError @ angular2.dev.js:5700run @ angular2-polyfills.js:141(anonymous function) @ angular2.dev.js:5719zoneBoundFn @ angular2-polyfills.js:111lib$es6$promise$$internal$$tryCatch @ angular2-polyfills.js:1511lib$es6$promise$$internal$$invokeCallback @ angular2-polyfills.js:1523lib$es6$promise$$internal$$publish @ angular2-polyfills.js:1494(anonymous function) @ angular2-polyfills.js:243microtask @ angular2.dev.js:5751run @ angular2-polyfills.js:138(anonymous function) @ angular2.dev.js:5719zoneBoundFn @ angular2-polyfills.js:111lib$es6$promise$asap$$flush @ angular2-polyfills.js:1305
angular2.dev.js:23514 Error: No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.
at new BaseException (angular2.dev.js:8080)
at new PathLocationStrategy (router.dev.js:1203)
at angular2.dev.js:1380
at Injector._instantiate (angular2.dev.js:11923)
at Injector._instantiateProvider (angular2.dev.js:11859)
at Injector._new (angular2.dev.js:11849)
at InjectorDynamicStrategy.getObjByKeyId (angular2.dev.js:11733)
at Injector._getByKeyDefault (angular2.dev.js:12048)
at Injector._getByKey (angular2.dev.js:12002)
at Injector._getByDependency (angular2.dev.js:11990)
Czy ktoś wie, dlaczego router to rzuca? Używam angular2 beta
oto mój kod:
import {Component} from 'angular2/core';
import { RouteConfig, ROUTER_DIRECTIVES } from 'angular2/router';
import {LoginComponent} from './pages/login/login.component';
import {DashboardComponent} from './pages/dashboard/dashboard.component';
@Component({
selector: 'app',
directives:[ROUTER_DIRECTIVES],
template:`
<div class="wrapper">
<router-outlet></router-outlet>
</div>`
})
@RouteConfig([
{ path: '/',redirectTo: '/dashboard' },
{ path: '/login',name:'login',component: LoginComponent },
{ path: '/dashboard',name:'dashboard',component: DashboardComponent,}
])
export class AppComponent {
}
bootstrap(AppComponent, [ROUTER_PROVIDERS, provide(APP_BASE_HREF, {useValue : '/'})]);
import {provide} from 'angular2/core';
aby móc korzystać z dostarczania.import {APP_BASE_HREF} from 'angular2/router';
<base href="https://stackoverflow.com/" />
został ustawiony w pliku (na"/"
,"./"
,"#"
lub jakakolwiek inna ścieżka bazowa, bez względu na to, jak same ścieżki obrazu zostały określone we wzorze). Jedynym rozwiązaniem, które w końcu zadziałało, było użycieAPP_BASE_HREF
zamiast tego. Prawdziwa oszczędność życia!Miałem podobny problem z testami jednostkowymi Angular4 i Jasmine; poniższe rozwiązanie działało dla mnie
Dodaj poniższą instrukcję importu
Dodaj poniższą instrukcję dotyczącą konfiguracji TestBed:
źródło
Możesz także korzystać z nawigacji opartej na haszowaniu, dołączając następujące elementy do app.module.ts
i dodając następujące elementy do @NgModule ({...})
„HashLocationStrategy - znak skrótu (#) jest dodawany do adresu URL, a segment adresu URL po skrócie jednoznacznie identyfikuje trasę, która ma być używana jako fragment strony internetowej. Ta strategia działa ze wszystkimi przeglądarkami, w tym starymi. ”
Fragment: Jakow Fain Anton Moiseev. „Programowanie Angular 2 z TypeScript.”
źródło
Od wersji 2.0 beta :)
źródło
wystarczy dodać poniższy kod w tagu head index.html
to działało dla mnie jak urok.
źródło
W Angular 4 możesz rozwiązać ten problem, aktualizując plik app.module.ts w następujący sposób:
Dodaj instrukcję importu u góry, jak poniżej:
I dodaj poniżej linii w środku
@NgModule
Reff: https://angular.io/api/common/APP_BASE_HREF
źródło
Poprawka kątowa 7,8 znajduje się w app.module.ts
dodaj @NgModule
providers: [{provide: APP_BASE_HREF, useValue: '/'}]
źródło
Sprawdź swój index.html. Jeśli przypadkowo usunąłeś następującą część, dołącz ją i będzie dobrze
źródło