當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript urijs類代碼示例

本文整理匯總了TypeScript中urijs的典型用法代碼示例。如果您正苦於以下問題:TypeScript urijs類的具體用法?TypeScript urijs怎麽用?TypeScript urijs使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了urijs類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: URI

export function get<T>(nodeID: number, fields: string): Promise<T>  {
    let uri = URI('/api').segment(nodeID.toString());
    uri.setQuery('authToken', AuthTokenKeeper.getAuthToken());
    if (fields) {
        uri.setQuery('fields', fields);
    }
    return axios.get(uri.toString()).then((response): T => {
        return response.data as T;
    });
}
開發者ID:mcsharma1990,項目名稱:taskify,代碼行數:10,代碼來源:API.ts

示例2: getGeneric

export function getGeneric(path: string, params: Map<string, string>) {
    let uri = URI('/api').segment(path);
    params.set('authToken', AuthTokenKeeper.getAuthToken());
    params.forEach((value, key) => {
        uri.setQuery(key, value);
    });
    return axios.get(uri.toString()).then((response) => {
        return response.data;
    });
}
開發者ID:mcsharma1990,項目名稱:taskify,代碼行數:10,代碼來源:API.ts

示例3: many

	static many ({ skip = null, limit = null } = {}) {
		// TODO: Add check for limit and skip params
		const input = URI(`${url}/categories`).query({ skip, limit }).toString()
		return makeGetReq(input)
	}
開發者ID:InnoDevelopment,項目名稱:frontend,代碼行數:5,代碼來源:innopoints-api.ts

示例4: exists

	static exists ({ id = undefined, username = undefined }): Promise<boolean> {
		// TODO: Add params' values check
		if (!id && !username) return Promise.reject(INVALID_PARAMS_ERR)
		const input = URI(`${url}/${token()}/exists`).query({ id, username }).toString()
		return makeGetReq(input)
	}
開發者ID:InnoDevelopment,項目名稱:frontend,代碼行數:6,代碼來源:accounts-api.ts

示例5: one

	static one ({ id = undefined, username = undefined }): Promise<Account> {
		// TODO: Add permission check
		if (!id && !username) return Promise.reject(INVALID_PARAMS_ERR)
		const input = URI(`${url}/${token()}/getBio`).query({ id, username }).toString()
		return makeGetReq(input)
	}
開發者ID:InnoDevelopment,項目名稱:frontend,代碼行數:6,代碼來源:accounts-api.ts


注:本文中的urijs類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。