当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ajax.getJSON方法代码示例

本文整理汇总了TypeScript中rxjs/ajax.ajax.getJSON方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ajax.getJSON方法的具体用法?TypeScript ajax.getJSON怎么用?TypeScript ajax.getJSON使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在rxjs/ajax.ajax的用法示例。


在下文中一共展示了ajax.getJSON方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: getDepth

export function getDepth(direction: Direction) {
  const directionalCompare = (a: OrderType, b: OrderType) =>
    direction === Direction.buy
      ? b.price > a.price
      : a.price > b.price
  return ajax.getJSON<OrderType[]>(`${URL}/depth/${direction}`).pipe(
    map((orders) => orders.sort((a, b) => directionalCompare(a, b) ? 1 : -1).slice(0, 3)),
  )
}
开发者ID:Carl-Foster,项目名称:exchange-app,代码行数:9,代码来源:exchange.ts

示例2: merge

    (selectedView: IView | null) => selectedView == null
      ? EMPTY
      : merge(
        // initial fetch
        ajax.getJSON<IViewData>(`api/viewdata/${selectedView.id}`).pipe(catchError(() => EMPTY)),

        // keep polling
        observableOf(null)
          .pipe(delay(3000))
          .pipe(mergeMap(() => ajax.getJSON<IViewData>(`api/viewdata/${selectedView.id}`).pipe(catchError(() => EMPTY))))
          .pipe(repeat<IViewData | null>())
      )
开发者ID:amoerie,项目名称:teamcity-theatre,代码行数:12,代码来源:dashboard.observables.ts

示例3:

 .pipe(switchMap<View | null, IView[]>(() => ajax.getJSON<IView[]>("api/views")))
开发者ID:amoerie,项目名称:teamcity-theatre,代码行数:1,代码来源:settings.observables.views.ts

示例4:

 .pipe(mergeMap(() => ajax.getJSON<IViewData>(`api/viewdata/${selectedView.id}`).pipe(catchError(() => EMPTY))))
开发者ID:amoerie,项目名称:teamcity-theatre,代码行数:1,代码来源:dashboard.observables.ts

示例5: observableDefer

export const allViews: Observable<IView[] | null> = observableDefer(() => ajax.getJSON<IView[]>("api/views"));
开发者ID:amoerie,项目名称:teamcity-theatre,代码行数:1,代码来源:dashboard.observables.ts

示例6:

export const getMappings = (server: IServer) =>
    ajax.getJSON(buildApiUrl(server, '/mappings'))
开发者ID:manishshanker,项目名称:wiremock-ui,代码行数:2,代码来源:api.ts

示例7: switchMap

 switchMap(project => ajax.getJSON<IDetailedProject>(`api/projects/${project.id}`).pipe(
   map(detailedProject => project.withBuildConfigurations(detailedProject.buildConfigurations.map(BuildConfiguration.fromContract))),
   startWith<Project | null>(null))),
开发者ID:amoerie,项目名称:teamcity-theatre,代码行数:3,代码来源:settings.observables.selected-project.ts

示例8: observableDefer

const initialRootProjects: Observable<Project> = observableDefer(() => ajax.getJSON<IBasicProject[]>("api/projects")).pipe(
开发者ID:amoerie,项目名称:teamcity-theatre,代码行数:1,代码来源:settings.observables.projects.ts


注:本文中的rxjs/ajax.ajax.getJSON方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。