我在我的应用中添加了CustomTabs以重定向外部网址。我想从我的应用程序中的CustomTabs中打开的url获取响应,CustomTabs会自动关闭。打开的url返回数组,我想在我的应用程序中使用数组。 自定义标签的代码: -
url = 'https://www.example.com/newtest.php';
CustomTabs.openURL(url,{ toolbarColor: '#607D8B',enableUrlBarHiding: true,showPageTitle: true,enableDefaultShare: true,animations: ANIMATIONS_SLIDE}).then((launched: boolean) => {
console.log(`Launched custom tabs: ${launched}`);
}).catch(err => {
console.error(err)
});
我不知道。我能为此做些什么?