React Native Dotenv 使用指南
// 引入dotenv包
require('dotenv').config();
// 使用process.env访问环境变量
export const API_URL = process.env.API_URL;
export const API_KEY = process.env.API_KEY;
// 在React Native组件中使用环境变量
import React from 'react';
import { Text } from 'react-native';
import { API_URL, API_KEY } from './path/to/env-variables'; // 假设环境变量文件位于该路径
export default class App extends React.Component {
render() {
return (
<Text>
API URL: {API_URL}
API Key: {API_KEY}
</Text>
);
}
}
这段代码展示了如何在React Native项目中安全地使用dotenv库来管理环境变量。首先,我们通过require('dotenv').config()
加载环境变量配置文件,然后通过process.env
对象访问这些变量。最后,我们创建了一个React Native组件来展示如何使用这些变量。这种方法使得管理API密钥和其他敏感信息变得更加安全和方便。
评论已关闭