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


TypeScript SPHttpClientResponse.json方法代码示例

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


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

示例1: reject

 .then((response: SPHttpClientResponse) => {
     if (response.ok) {
         return response.json();
     } else {
         reject( this.getErrorMessage(webUrl, response) );
     }
 })
开发者ID:,项目名称:,代码行数:7,代码来源:

示例2: resolve

				.then((response: SPHttpClientResponse) => {
					if(response.ok) {
						resolve(response.json());
					}
					else {
						reject(response.statusText);
					}
				})
开发者ID:,项目名称:,代码行数:8,代码来源:

示例3: Number

			this.spHttpClient.get(endpoint, SPHttpClient.configurations.v1).then((response: SPHttpClientResponse) => {
				if(response.ok) {
					response.json().then((data: any) => {
						let listTitles:IListTitle[] = data.value.map((list) => { return { id: list.Id, title: list.Title }; });
						resolve(listTitles.sort((a,b) => { return Number(a.title > b.title); }));
					})
					.catch((error) => { reject(error); });
				}
				else {
					reject(response);
				}
			})
开发者ID:,项目名称:,代码行数:12,代码来源:

示例4: _getProjectTasks

    private async _getProjectTasks(webUrl: string, projectId: string, selectFields: string[], filter: string, orderBy: string, top: number): Promise<IPOTask[]> {

        let data: IPOTask[] = [];
        const select = selectFields.join(',');

        try {
            const response: SPHttpClientResponse = await this._webPartContext.spHttpClient.get(webUrl + `/_api/ProjectServer/Projects('${projectId}')/Tasks()?$select=${select}`, SPHttpClient.configurations.v1);
            if (response) {
                const jsonData: any = await response.json();
                if (jsonData.value) {
                    data = jsonData.value;
                }
            }

        } catch (error) {
            Logger.write('Error loading project tasks: ' + error, LogLevel.Error);
        }
        return data;
    }
开发者ID:,项目名称:,代码行数:19,代码来源:

示例5: getChildTermsAsync

  /**
   * @function
   * Gets the child terms of another term of the Term Store in the current SharePoint env
   */
  private async getChildTermsAsync(term: any): Promise<ISPTermObject[]> {

    // Check if there are child terms to search for
    if (Number(term['TermsCount']) > 0) {

      //Build the Client Service Request
      let clientServiceUrl = this.siteAbsoluteUrl + '/_vti_bin/client.svc/ProcessQuery';
      let data = '<Request AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName=".NET Library" xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009"><Actions><ObjectPath Id="20" ObjectPathId="19" /><Query Id="21" ObjectPathId="19"><Query SelectAllProperties="false"><Properties /></Query><ChildItemQuery SelectAllProperties="true"><Properties><Property Name="CustomSortOrder" ScalarProperty="true" /><Property Name="CustomProperties" ScalarProperty="true" /><Property Name="LocalCustomProperties" ScalarProperty="true" /></Properties></ChildItemQuery></Query></Actions><ObjectPaths><Property Id="19" ParentId="16" Name="Terms" /><Identity Id="16" Name="' + term['_ObjectIdentity_'] + '" /></ObjectPaths></Request>';
      let httpPostOptions: ISPHttpClientOptions = {
        headers: {
          'accept': 'application/json',
          'content-type': 'application/json',
          "X-RequestDigest": this.formDigest
        },
        body: data
      };
      let serviceResponse: SPHttpClientResponse = await this.spHttpClient.post(clientServiceUrl, SPHttpClient.configurations.v1, httpPostOptions);
      let serviceJSONResponse: Array<any> = await serviceResponse.json();

      // Extract the object of type SP.Taxonomy.TermCollection from the array
      let termsCollections = serviceJSONResponse.filter(
        (child: any) => (child != null && child['_ObjectType_'] !== undefined && child['_ObjectType_'] === "SP.Taxonomy.TermCollection")
      );

      // And if any, get the first and unique Terms collection object
      if (termsCollections != null && termsCollections.length > 0) {
        let termsCollection = termsCollections[0];

        let childItems = termsCollection['_Child_Items_'];
        
        return(await Promise.all<ISPTermObject>(childItems.map(async (t: any) : Promise<ISPTermObject> => {
          return await this.projectTermAsync(t, term);
        })));
      }
    }

    // Default empty array in case of any missing data
    return (new Promise<Array<ISPTermObject>>((resolve, reject) => {
      resolve(new Array<ISPTermObject>());
    }));
  }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:45,代码来源:SPTermStoreService.ts

示例6:

 return this.context.spHttpClient.get(restUrl,SPHttpClient.configurations.v1).then((response: SPHttpClientResponse) => {
     return response.json().then((responseFormated: any) => {
         var formatedResponse: ISPListItems = { value: []};
         //Fetchs the Json response to construct the final items list
         responseFormated.value.map((object: any, i: number) => {
           //Tests if the result is a file and not a folder
           if (object['FileSystemObjectType'] == '0') {
             var spListItem: ISPListItem = {
               'ID': object["ID"],
               'Title': object['Title'],
               'Description': object['Description'],
               'File': {
                 'Name': object['File']['Name'],
                 'ServerRelativeUrl': object['File']['ServerRelativeUrl']
               }
             };
             //Creates the thumbnail item url from the Picture path
             spListItem.File.ThumbnailServerUrl = this.getThumbnailUrl(spListItem.File.ServerRelativeUrl, spListItem.File.Name);
             formatedResponse.value.push(spListItem);
           }
         });
         return formatedResponse;
     });
 }) as Promise<ISPListItems>;
开发者ID:,项目名称:,代码行数:24,代码来源:


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