本文整理匯總了TypeScript中@jupyterlab/services.ContentsManager.getDownloadUrl方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ContentsManager.getDownloadUrl方法的具體用法?TypeScript ContentsManager.getDownloadUrl怎麽用?TypeScript ContentsManager.getDownloadUrl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@jupyterlab/services.ContentsManager
的用法示例。
在下文中一共展示了ContentsManager.getDownloadUrl方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should get the url of a file', async () => {
const drive = new Drive({ serverSettings: settings });
const contents = new ContentsManager({ defaultDrive: drive });
const test1 = contents.getDownloadUrl('bar.txt');
const test2 = contents.getDownloadUrl('fizz/buzz/bar.txt');
const test3 = contents.getDownloadUrl('/bar.txt');
const urls = await Promise.all([test1, test2, test3]);
expect(urls[0]).to.equal('http://foo/files/bar.txt');
expect(urls[1]).to.equal('http://foo/files/fizz/buzz/bar.txt');
expect(urls[2]).to.equal('http://foo/files/bar.txt');
});