本文整理汇总了TypeScript中@jupyterlab/services.Session.findByPath方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Session.findByPath方法的具体用法?TypeScript Session.findByPath怎么用?TypeScript Session.findByPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@jupyterlab/services.Session
的用法示例。
在下文中一共展示了Session.findByPath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: main
function main(): void {
let path = 'dummy_path';
let query: { [key: string]: string } = Object.create(null);
window.location.search.substr(1).split('&').forEach(item => {
let pair = item.split('=');
if (pair[0]) {
query[pair[0]] = pair[1];
}
});
if (!query['path']) {
Session.startNew({ path }).then(session => { startApp(session); });
return;
}
Session.findByPath(query['path'])
.then(model => { return Session.connectTo(model.id); })
.then(session => { startApp(session); })
.catch(error => {
console.warn(`path="${query['path']}"`, error);
Session.startNew({ path }).then(session => { startApp(session); });
});
}
示例2: it
it('should find an existing session by path', () => {
return Session.findByPath(defaultSession.path);
});