本文整理汇总了TypeScript中tns-core-modules/trace.addCategories函数的典型用法代码示例。如果您正苦于以下问题:TypeScript addCategories函数的具体用法?TypeScript addCategories怎么用?TypeScript addCategories使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了addCategories函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: addCategories
import {
rendererTraceCategory,
routerTraceCategory,
listViewTraceCategory,
animationsTraceCategory,
viewUtilCategory,
routeReuseStrategyTraceCategory,
bootstrapCategory,
} from "nativescript-angular/trace";
import { PAGE_FACTORY, PageFactory, PageFactoryOptions } from "nativescript-angular/platform-providers";
import { Page } from "tns-core-modules/ui/page";
import { Color } from "tns-core-modules/color";
import { log } from "tns-core-modules/profiling";
import { setCategories, addCategories, enable, categories } from "tns-core-modules/trace";
addCategories(bootstrapCategory);
// addCategories(rendererTraceCategory);
// addCategories(routerTraceCategory);
// addCategories(categories.ViewHierarchy);
// addCategories(categories.Layout);
// setCategories(routerTraceCategory);
// setCategories(listViewTraceCategory);
// setCategories(`${routeReuseStrategyTraceCategory}, ${routerTraceCategory}, ${viewUtilCategory}`);
enable();
import { RendererTest } from "./examples/renderer-test";
import { TabViewTest } from "./examples/tab-view/tab-view-test";
import { Benchmark } from "./performance/benchmark";
import { ListTest } from "./examples/list/list-test";
import { ListTemplateSelectorTest } from "./examples/list/template-selector";
import { ListTestAsync, ListTestFilterAsync } from "./examples/list/list-test-async";
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:31,代码来源:app.ts
示例2:
import * as application from "tns-core-modules/application";
import * as trace from "tns-core-modules/trace";
trace.addCategories(
trace.categories.Transition)
// + "," +
// trace.categories.NativeLifecycle + "," +
// trace.categories.Navigation);
trace.enable();
// Needed only for build infrastructure
application.setCssFileName("navigation-app/app.css");
application.start({ moduleName: "navigation-app/main-page" });
开发者ID:triniwiz,项目名称:NativeScript,代码行数:12,代码来源:app.ts
示例3: runTests
ďťżimport { Page } from "tns-core-modules/ui/page";
import * as trace from "tns-core-modules/trace";
import * as tests from "../testRunner";
trace.enable();
trace.addCategories(trace.categories.Test + "," + trace.categories.Error);
// When debugging
// trace.setCategories(trace.categories.concat(
// trace.categories.Test,
// trace.categories.Navigation,
// trace.categories.Transition,
// trace.categories.NativeLifecycle,
// trace.categories.ViewHierarchy,
// trace.categories.VisualTreeEvents
// ));
function runTests() {
setTimeout(() => tests.runAll(""), 10);
}
export function onNavigatedTo(args) {
args.object.off(Page.loadedEvent, onNavigatedTo);
runTests();
}
开发者ID:NathanaelA,项目名称:NativeScript,代码行数:26,代码来源:mainPage.ts
示例4: addCategories
import { NgModule, NO_ERRORS_SCHEMA, ErrorHandler } from "@angular/core";
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
import {
AppRoutingModule,
navigatableComponents,
} from "./app-routing.module";
import { AppComponent } from "./app.component";
import { ItemsService } from "./items.service";
import { rendererTraceCategory, viewUtilCategory, bootstrapCategory } from "nativescript-angular/trace";
import { addCategories, enable, categories } from "tns-core-modules/trace";
addCategories(bootstrapCategory);
addCategories(rendererTraceCategory);
addCategories(viewUtilCategory);
addCategories(categories.ViewHierarchy);
enable();
export class MyErrorHandler implements ErrorHandler {
handleError(error) {
console.log("### ErrorHandler Error: " + error.toString());
console.log("### ErrorHandler Stack: " + error.stack);
}
}
@NgModule({
declarations: [
AppComponent,
...navigatableComponents,
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:31,代码来源:app.module.ts
注:本文中的tns-core-modules/trace.addCategories函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论