我正在用expo开发一个React Native应用程序。其中一个屏幕包含使用Highcharts创建的图形。所有点都具有关联的 tooltip 和一些文本,我想向其添加一个链接,该链接将在浏览器中(即,应用程序外部)打开URL。
基本上,应用程序代码如下:
import ChartView from 'react-native-highcharts';
render() {
let Highcharts = "Highcharts";
let config ={
chart: {
type: "line",
animation: Highcharts.svg,
...
tooltip: {
followTouchMove: false,
useHTML: true,
formatter: function () {
return `<div class="text">bla bla bla
<a href="http://www.google.cat">my link here/a>
</div>`;
}
},
};
将其渲染为:
return(
<View style={styles.container}>
<ChartView
config={config}
/>
</View>
签到Link inside of a Highcharts tooltip时,我看到了一些有趣的想法,例如在charts
键内添加此信息:
events: {
click: function (event) {
var url = 'http://www.google.cat';
window.open(url, '_blank');
}
}
可以使用,但是会在React Native的ChartView
内部打开链接。也就是说,图表中的空格显示了给定的URL。但是,我希望在浏览器中打开URL。
是否可以在浏览器中打开链接? React Native的Linking.openURL(url);
是这样做的方法,但是我看不到如何从Linking.openURL
设置中绑定config
。
答案 0 :(得分:0)
我通过使用CharView中的onMessage
解决了这个问题:
return(
<View style={styles.container}>
<ChartView
onMessage={m => this.onMessage(m)}
config={config}
/>
</View>
这触发此方法打开URL:
onMessage = (m) => {
let data = JSON.parse(m.nativeEvent.data);
Linking.openURL(data.url)
};
然后通过全局变量window.myURL
填充URL,并使用postMessage()
发送消息:
render() {
let Highcharts = "Highcharts";
let config ={
...
plotOptions: {
series: {
stickyTracking: false,
point: {
events: {
click: function(e) {
window.postMessage(JSON.stringify({'url': window.myUrl}));
}
}
}
},
},
tooltip: {
useHTML: true,
formatter: function () {
window.myUrl = extras.url;
return `<div class="text">bla bla bla
<a href="http://www.google.cat">my link here/a>
</div>`;
}
};
它在iOS上效果很好,但在Android上效果不好。