本文整理汇总了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;
}
示例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;
};
示例3: parse
export function parse(jsonPath: string): JsonPath {
return jsonpath.parse(jsonPath).map(part => part.expression.value).slice(1);
}