本文整理汇总了TypeScript中@angular/common.Location类的典型用法代码示例。如果您正苦于以下问题:TypeScript Location类的具体用法?TypeScript Location怎么用?TypeScript Location使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Location类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should normalize strip a trailing slash', () => {
const input = baseUrl + '/';
expect(Location.stripTrailingSlash(input)).toBe(baseUrl);
});
示例2: tick
(router: Router, location: Location, tcb: TestComponentBuilder) => {
tcb.createFakeAsync(MyApp);
router.navigate(['/']);
tick();
expect(location.path()).toBe('');
})
示例3: constructor
constructor(public authenticationService: AuthenticationService, private _location: Location) {
_location.go('/home');
}
示例4: describe
describe('SignupComponent', () => {
@Component({
template: `<mpt-signup></mpt-signup><router-outlet></router-outlet>`,
directives: [SignupComponent, ROUTER_DIRECTIVES],
})
class TestComponent {
}
@Component({
template: ``,
})
class BlankComponent {
}
let fixture:ComponentFixture<any>;
let cmpDebugElement:DebugElement;
let loginService:LoginService;
let backend:MockBackend;
let router:Router;
let location:Location;
beforeEach(() => addProviders([
provideFakeRouter(TestComponent, [
{
path: 'home',
component: BlankComponent,
},
]),
APP_TEST_PROVIDERS,
]));
beforeEach(inject([LoginService, MockBackend, Router, Location], (..._) => {
[loginService, backend, router, location] = _;
}));
beforeEach(async(inject([TestComponentBuilder], (tcb:TestComponentBuilder) => {
tcb
.createAsync(TestComponent)
.then((_fixture:ComponentFixture<any>) => {
fixture = _fixture;
cmpDebugElement = _fixture.debugElement.query(By.directive(SignupComponent));
_fixture.detectChanges();
});
})));
it('can be shown', () => {
expect(cmpDebugElement).toBeTruthy();
});
it('can validate inputs', () => {
const page:SignupComponent = cmpDebugElement.componentInstance;
page.name.updateValue('a', {});
page.email.updateValue('b', {});
page.password.updateValue('c', {});
page.passwordConfirmation.updateValue('d', {});
expect(page.myForm.valid).toBeFalsy();
page.name.updateValue('akira', {});
page.email.updateValue('test@test.com', {});
page.password.updateValue('secret123', {});
page.passwordConfirmation.updateValue('secret123', {});
expect(page.myForm.valid).toBeTruthy();
});
it('can signup', fakeAsync(() => {
const page:SignupComponent = cmpDebugElement.componentInstance;
spyOn(loginService, 'login').and.callThrough();
backend.connections.subscribe(conn => {
conn.mockRespond(new Response(new BaseResponseOptions()));
});
page.onSubmit({
email: 'test@test.com',
password: 'secret',
name: 'akira',
});
expect(loginService.login).toHaveBeenCalledWith('test@test.com', 'secret');
advance(fixture);
expect(location.path()).toEqual('/home');
}));
});
示例5: isNotHome
isNotHome() {
return this.location.path() !== '';
}
示例6: getClass
public getClass(primaryOption, defaultOption, prefixToCheck) {
return this._location.path().startsWith(prefixToCheck) ? primaryOption : defaultOption;
}
示例7: goBack
public goBack(): void {
this.location.back();
}
示例8: getLinkStyle
getLinkStyle(path) {
return this.location.path().indexOf(path) > -1;
}
示例9:
.subscribe( resp => {
this.location.back();
} );
示例10: ngOnInit
ngOnInit() {
this.location.go('/');
}