Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 react-native 中获得没有这个react -native-device-info 的设备 ID 和设备信息吗?就像我们在设备中获取位置信息一样。
您可以使用 RN 'Platform' 包获取设备信息。但是,您无法获取设备 ID,您需要将 API 桥接到 Javascript 作为本机模块。
获取设备信息的示例(exkl.设备 ID):
import { Platform } from 'react-native'; _getOS() { return Platform.OS } _getOSVersion() { return Platform.Version }