gpt4 book ai didi

javascript - 在 React Native 中管理字符串的最佳方法

转载 作者:行者123 更新时间:2023-11-30 07:07:19 29 4
gpt4 key购买 nike

我是 React Native 的新手。我一直在处理这个大项目,它包含太多可以在项目中的许多地方重复使用的字符串。所以我创建了一个 strings.js 文件,就像在 android 的 strings.xml 中一样,将所有可重用的字符串存储在一个这样的文件中,

export const SOME_STRING = 'Some value';
export const ANOTHER_STRING = 'Another value';
...

并在我需要时导入。

所以这些是我的问题......

1) 这是一个好方法吗?

2) 除了这个还有其他选择吗?

最佳答案

您不需要导出每个值。我知道的一种更好的方法是导出

const SOME_STRING = 'Some value';
const ANOTHER_STRING = 'Another value';

module.exports = {
SOME_STRING:SOME_STRING,
ANOTHER_STRING:ANOTHER_STRING
}

或者您可能希望将所有这些包装在 1 个常量对象中

const APPLICATION_CONSTANTS = {
SOME_STRING : 'Some string',
ANOTHER_STRING : 'Another string'
}

export default APPLICATION_CONSTANTS;

用法

import APPLICATION_CONSTANTS from './strings';

APPLICATION_CONSTANTS.SOME_STRING

关于javascript - 在 React Native 中管理字符串的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50636999/

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