當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ns-location-strategy.NSLocationStrategy類代碼示例

本文整理匯總了TypeScript中nativescript-angular/router/ns-location-strategy.NSLocationStrategy的典型用法代碼示例。如果您正苦於以下問題:TypeScript NSLocationStrategy類的具體用法?TypeScript NSLocationStrategy怎麽用?TypeScript NSLocationStrategy使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了NSLocationStrategy類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: simulatePageNavigation

function simulatePageNavigation(strategy: NSLocationStrategy, url: string, frame: any, outletName?: string) {
    outletName = outletName || "primary";
    strategy.pushState(null, null, url, null);

    const outlet: Outlet = strategy.findOutletByOutletPath(outletName);
    outlet.frame = frame;
    strategy._beginPageNavigation(frame);
}
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:8,代碼來源:ns-location-strategy.ts

示例2: it

 it("initial path() value", () => {
     const strategy = new NSLocationStrategy(new FakeFrame());
     assert.equal(strategy.path(), "/");
 });
開發者ID:leocaseiro,項目名稱:nativescript-angular,代碼行數:4,代碼來源:ns-location-strategy.ts

示例3: simulatePageBack

function simulatePageBack(strategy: NSLocationStrategy) {
    strategy._beginBackPageNavigation();
    strategy.back();
    strategy._finishBackPageNavigation();
}
開發者ID:leocaseiro,項目名稱:nativescript-angular,代碼行數:5,代碼來源:ns-location-strategy.ts

示例4: simulatePageNavigation

function simulatePageNavigation(strategy: NSLocationStrategy, url: string) {
    strategy.pushState(null, null, url, null);
    strategy._beginPageNavigation();
}
開發者ID:leocaseiro,項目名稱:nativescript-angular,代碼行數:4,代碼來源:ns-location-strategy.ts

示例5: initStrategy

function initStrategy(back?: () => void): NSLocationStrategy {
    const strategy = new NSLocationStrategy(new FakeFrame(back));
    strategy.pushState(null, null, "/", null); // load initial state
    return strategy;
}
開發者ID:leocaseiro,項目名稱:nativescript-angular,代碼行數:5,代碼來源:ns-location-strategy.ts

示例6: initStrategy

// tslint:disable-next-line:max-line-length
function initStrategy(initUrl: string, back?: () => void): { strategy: NSLocationStrategy, frameService: FrameService } {
    const frameService = new FakeFrameService(back);
    const strategy = new NSLocationStrategy(frameService);
    strategy.pushState(null, null, initUrl, null); // load initial state
    return { strategy: strategy, frameService: frameService };
}
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:7,代碼來源:ns-location-strategy.ts

示例7:

            res => {

                const location = res[0];
                const weather = res[1];
                const photos = res[2];
                const id = Math.floor(Math.random() * photos.photos.length);
                const photo = photos.photos[id]

                let saved_locations: Array<any> = JSON.parse(settings.getString(config.SAVED_LOCATIONS));
                console.log(settings.getString(config.SAVED_LOCATIONS))
                if (saved_locations.length > 0) {
                    let exists = saved_locations.reduce((item) => {
                        if (location.place_id === item.place_id) {
                            return item;
                        }
                    });

                    if (!exists) {
                        const arr = saved_locations.splice(0).push({ place_id: location.place_id, lat: location.lat, lon: location.lon, address: location.address });
                        settings.setString(config.SELECTED_LOCATION, JSON.stringify({ place_id: location.place_id, lat: location.lat, lon: location.lon, address: location.address }))
                        settings.setString(config.SAVED_LOCATIONS, JSON.stringify(arr));
                        settings.setString(config.WEATHER, JSON.stringify(weather));
                        settings.setString(config.PHOTOS, JSON.stringify(photos));
                        settings.setString(config.PHOTO, JSON.stringify(photo));
                        this.locationStrategy.back();
                        this.saving = false;
                    } else {
                        this.saving = false;
                        dialog.alert({ title: 'Try again', message: "Location exist in user's list already" })
                    }
                } else {
                    const arr = saved_locations.splice(0).push({ place_id: location.place_id, lat: location.lat, lon: location.lon, address: location.address });
                    settings.setString(config.SELECTED_LOCATION, JSON.stringify({ place_id: location.place_id, lat: location.lat, lon: location.lon, address: location.address }))
                    settings.setString(config.SAVED_LOCATIONS, JSON.stringify(arr));
                    settings.setString(config.WEATHER, JSON.stringify(weather));
                    settings.setString(config.PHOTOS, JSON.stringify(photos));
                    settings.setString(config.PHOTO, JSON.stringify(photo));
                    this.locationStrategy.back();
                    this.saving = false;
                }




            },
開發者ID:eeandrew,項目名稱:weatherecipes,代碼行數:45,代碼來源:search.component.ts

示例8:

 router.events.subscribe(e => {
   if (e instanceof NavigationEnd) {
     console.log("[ROUTER]: " + e.toString());
     console.log(location.toString());
   }
 });
開發者ID:NativeScript,項目名稱:nativescript-angular,代碼行數:6,代碼來源:named-router.component.ts

示例9: goBack

 goBack() {
     this.locationStrategy.back();
 }
開發者ID:eeandrew,項目名稱:weatherecipes,代碼行數:3,代碼來源:search.component.ts


注:本文中的nativescript-angular/router/ns-location-strategy.NSLocationStrategy類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。