gpt4 book ai didi

android - 我如何在 react 原生 webview 中从网页访问当前位置

转载 作者:行者123 更新时间:2023-12-03 14:19:20 29 4
gpt4 key购买 nike

我有一个用 react-js 开发的应用程序。我想将此应用程序集成到 react-native-webview .一切我都对,但我有两个问题。
1- 如何在 react-native-webview 中访问用户的当前位置。
2- 如何在 react-native-webview 中调试我的 react-js(webpage) 应用程序。

第一个问题
如果我在移动浏览器中运行网页并单击该事件,我将获得用户的当前位置,同时我的 原生应用程序 开始,我正在调用当前位置的权限,所以在 react-native-debugger我正在获取用户的当前位置。我遵循了类似的示例,但 this与 native react 有关。
确切的问题是如何在 react-native-webview 中访问 webview 的当前位置

第二个问题
当我单击事件以获取当前位置时,它没有显示当前位置,所以**我想查看该事件的错误/响应是什么**。因为它在 webview 中,所以我可以在 react-native-debugger 中访问 react-native 日志,但在调试器中看不到 web View 日志。我关注了 this也有一个,但我不知道在哪里放置那个 android 配置代码。

我的 react 原生 代码

import React, {Component} from 'react';
import {PermissionsAndroid} from 'react-native';
import { WebView } from "react-native-webview";

export default class App extends Component {

constructor(props){
super(props);

// To see all the requests in the chrome Dev tools in the network tab.
XMLHttpRequest = GLOBAL.originalXMLHttpRequest ?
GLOBAL.originalXMLHttpRequest :
GLOBAL.XMLHttpRequest;

// fetch logger
global._fetch = fetch;
global.fetch = function (uri, options, ...args) {
return global._fetch(uri, options, ...args).then((response) => {
console.log('Fetch', { request: { uri, options, ...args }, response });
return response;
});
};
}
async requestLocationPermission() {
try {
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
'title': 'Location Access Permission',
'message': 'Stanplus would like to use your location ' +
'so you we track you.'
}
)
if (granted === PermissionsAndroid.RESULTS.GRANTED) {
console.log("You can use the location");
if (typeof window !== 'undefined' && typeof window.navigator !== 'undefined' && navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
(position) => {
console.log(position.coords.latitude,'success');
},
(error) => {
console.log(error,'fail')
},
{ enableHighAccuracy: false, timeout: 5000, maximumAge: 10000 }
);
}


} else {
console.log("Location permission denied")
}
} catch (err) {
console.warn(err)
}


}

componentDidMount() {
this.requestLocationPermission();
}

render() {
return (
<WebView
source={{uri: 'https://3fa4f958.ngrok.io/steptwo'}}
style={{marginTop: 20}}
onMessage={(event)=> console.log(event.nativeEvent.data)}
scalesPageToFit={true}
javaScriptEnabled = {true}
/>
);
}
}

我的 React.js 访问当前位置的代码
if (navigator.geolocation) {
alert('event clicked');//in react-native app its showing the alert
navigator.geolocation.getCurrentPosition(
//but inside here react-native can't execute because of location permission issue
position => {
let latlng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
let geocoder = new window.google.maps.Geocoder();
//do other stuff----------
}
)
}

** 我想在用户单击 react-native 应用程序中的网页事件时获取当前位置以及如何调试 webview 代码**

请帮助卡住 2 天):

最佳答案

需要几个步骤才能让它在 Android 上运行。

将此行添加到您的 AndroidManifest.xml :

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

然后在您的应用程序中,您需要在 webview 请求位置之前请求一次位置。在你看来这样做:
import { PermissionsAndroid } from 'react-native';

...

PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
title: 'Location Access Permission',
message: 'We would like to use your location',
buttonPositive: 'Okay'
}
);

然后也在你的 webview 上添加属性:
geolocationEnabled={true}

关于android - 我如何在 react 原生 webview 中从网页访问当前位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54422996/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com