React-Native发布渠道存在问题

时间:2019-12-29 22:34:16

标签: javascript react-native expo

我在React-Native发布渠道上遇到了一些问题。显然,当他们在一边测试应用程序时,他们不在生产渠道中,因此该应用程序的行为不符合预期。但是在我这边,当我尝试它时,它的行为正常,并且在产品频道上。

在我的config.js文件中,我有这个:

import {Constants} from 'expo'
const RELEASE_CHANNEL = Constants.manifest.releaseChannel || 'production';


const production = {*********************};
const dev = {***********************};
const staging = {***********************};


module.exports = {default: staging, dev, staging, production}[RELEASE_CHANNEL]

有人可以告诉我第二行和最后一行是什么吗?

module.exports = {default: staging, dev, staging, production}[RELEASE_CHANNEL] 默认关键字指的是什么?分期吗?我注意到有两个阶段是错误?当我删除其中之一时,我注意到它给我一条错误消息。

我在打开的博览会“ http://localhost:19002/”页面上注意到了另一个问题,当我选择生产模式时,它实际上指向开发人员。而当我取消选择它时,它指向生产。

enter image description here

0 个答案:

没有答案