我试图从应用程序内的浏览器提取一个url,我有一些麻烦,欢迎任何想法!
链接将成功打开,但当我点击应用内浏览器上的取消按钮时,链接返回为空。
try {
const isAvailable = await InAppBrowser.isAvailable()
if (isAvailable) {
InAppBrowser.open(url, {
// iOS Properties
dismissButtonStyle: 'cancel',
preferredBarTintColor: 'gray',
preferredControlTintColor: 'white',
// Android Properties
showTitle: true,
toolbarColor: '#6200EE',
secondaryToolbarColor: 'black',
enableUrlBarHiding: true,
enableDefaultShare: true,
forceCloseOnRedirection: true,
}).then((response) => {
console.log("JSON REsponse:",JSON.stringify(response))
console.log("JSON REsponse:",JSON.stringify(response))
Linking.getInitialURL().then(initialUrl => {
console.log("test:",initialUrl as string);
});
})
尝试删除JSON。在console.log中只打印响应