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


TypeScript Strands.append方法代码示例

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


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

示例1: createProtoResources

  // Create prototype resources.
  private createProtoResources(withParams: KeyedNestedResources, noParams: KeyedNestedResources) {
    for (const key of Object.keys(withParams)) {
      const child = withParams[key];

      // Skip inlined entries.
      if (noParams[key] != null) {
        continue;
      }

      this.buffer.append(`\n`);
      this.buffer.append(`  ${child.methodName}${this.toParamsMethod(child, 'this.client', true)}`);
    }
  }
开发者ID:mulesoft-labs,项目名称:raml-javascript-generator,代码行数:14,代码来源:index.js.ts

示例2: createThisResources

  private createThisResources(withParams: KeyedNestedResources, noParams: KeyedNestedResources, client: string, isChild = true) {
    for (const key of Object.keys(noParams)) {
      const child = noParams[key];
      let constructor;
      let path: string;
      if (isChild) {
        path = `\`\${this.path}${child.relativeUri}\``;
      } else {
        path = `'${child.relativeUri}'`;
      }
      if (this.currentPath.length === 0) {
        constructor = `new ${uppercamelcase(child.methodName)}(${client}, ${path})`;
      } else {
        constructor = `new ${this.currentPath.join('.')}.` +
          `${uppercamelcase(child.methodName)}(${client}, ${path})`;
      }

      if (withParams[key] == null) {
        this.buffer.line(`    this.${child.methodName} = ${constructor};`);
      } else {
        this.buffer.line();
        this.buffer.append(`    this.${child.methodName} = Object.setPrototypeOf(` +
          `${this.toParamsFunction(withParams[key], client, isChild, ` ${constructor});`)}`);
      }
    }
  }
开发者ID:mulesoft-labs,项目名称:raml-javascript-generator,代码行数:26,代码来源:index.js.ts


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