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


TypeScript JSONPath.parse函数代码示例

本文整理汇总了TypeScript中JSONPath.parse函数的典型用法代码示例。如果您正苦于以下问题:TypeScript parse函数的具体用法?TypeScript parse怎么用?TypeScript parse使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: GetJsonQueryAt

  /**
   * Determines the JSON query found at a given position.
   * For example, suppressions will use JSON queries to limit the scope of the suppression (e.g. `$..parameters[?(@.name === 'quirkyParam')]`).
   *
   * @param position The position to look at for a JSON query.
   */
  public GetJsonQueryAt(position: Position): string | null {
    const lines = this.document.split("\n");
    const potentialQuery: string = (lines[position.line].match(/\B\$[.[].+/g) || [])[0];

    try {
      parse(potentialQuery);
    } catch (e) {
      return null;
    }

    return potentialQuery;
  }
开发者ID:anuchandy,项目名称:autorest,代码行数:18,代码来源:document-analysis.ts

示例2: catch

const overrideFn = (opt, opts) => {
  if (typeof(opts) === 'undefined') {
    opts = [];
  }
  const [path, val] = opt.split('=');
  if (typeof(path) === 'undefined' || typeof(val) === 'undefined') {
    // tslint:disable-next-line
    console.warn('Invalid format for invalid config. Correct is -> jsonpath=value');
    return opts;
  }
  try {
    jp.parse(path);
  } catch (e) {
    // tslint:disable-next-line
    console.warn('JSONPath is invalid', e);
  }
  opts.push({ path, val });
  return opts;
};
开发者ID:RiseVision,项目名称:rise-node,代码行数:19,代码来源:app.ts

示例3: parse

export function parse(jsonPath: string): JsonPath {
  return jsonpath.parse(jsonPath).map(part => part.expression.value).slice(1);
}
开发者ID:jianghaolu,项目名称:AutoRest,代码行数:3,代码来源:jsonpath.ts


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