我是react-native的新手,我想在默认浏览器(例如Android和iPhone中的Chrome)中打开url。
我们通过intent在Android中打开网址,就像我要实现的功能一样。
我已经搜索了很多次,但是它会给我Deepklinking的结果。
我是react-native的新手,我想在默认浏览器(例如Android和iPhone中的Chrome)中打开url。
我们通过intent在Android中打开网址,就像我要实现的功能一样。
我已经搜索了很多次,但是它会给我Deepklinking的结果。
Answers:
您应该使用Linking
。
来自文档的示例:
class OpenURLButton extends React.Component {
static propTypes = { url: React.PropTypes.string };
handleClick = () => {
Linking.canOpenURL(this.props.url).then(supported => {
if (supported) {
Linking.openURL(this.props.url);
} else {
console.log("Don't know how to open URI: " + this.props.url);
}
});
};
render() {
return (
<TouchableOpacity onPress={this.handleClick}>
{" "}
<View style={styles.button}>
{" "}<Text style={styles.text}>Open {this.props.url}</Text>{" "}
</View>
{" "}
</TouchableOpacity>
);
}
}
这是您可以尝试Expo Expo的示例:
import React, { Component } from 'react';
import { View, StyleSheet, Button, Linking } from 'react-native';
import { Constants } from 'expo';
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<Button title="Click me" onPress={ ()=>{ Linking.openURL('https://google.com')}} />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingTop: Constants.statusBarHeight,
backgroundColor: '#ecf0f1',
},
});
一种更简单的方法,消除了检查应用程序是否可以打开URL的麻烦。
loadInBrowser = () => {
Linking.openURL(this.state.url).catch(err => console.error("Couldn't load page", err));
};
用一个按钮调用它。
<Button title="Open in Browser" onPress={this.loadInBrowser} />
openURL
方法。例如:If (this.state.url) Linking.openURL(this.state.url)
。如果您不想事先检查,也可以使用catch子句。
在React 16.8+中,使用功能组件,您可以
import React from 'react';
import { Button, Linking } from 'react-native';
const ExternalLinkBtn = (props) => {
return <Button
title={props.title}
onPress={() => {
Linking.openURL(props.url)
.catch(err => {
console.error("Failed opening page because: ", err)
alert('Failed to open page')
})}}
/>
}
export default function exampleUse() {
return (
<View>
<ExternalLinkBtn title="Example Link" url="https://example.com" />
</View>
)
}