我在this repo中基于入门套件松散地构建了一个同构的React应用程序。它使用webpack来构建生产代码。
事实上,我需要将服务器上的一些环境变量的值暴露给浏览器中的客户端代码,而无需重建生产代码。我希望能够更改env变量的值,并让它在下一页刷新客户端的效果,而不必重建任何东西。而且我不想让测试复杂化。
我找到了一些解决方案,其中没有一个很好:
这些方法存在问题:
我过去曾做过2和3,但这些解决方案从来没有真正满足于理智。
有什么建议吗?这似乎应该是一个常见/解决的问题。也许我只是过度思考它,3是可行的方法。
答案 0 :(得分:2)
锅炉板使用express,您可以使用express'local。
将服务器env变量暴露给客户端var serverVariable = 'this is a server variable'
app.get('/somelink', function (req, res, next) {
res.locals.data = {
FluxStore: { serverlocal: serverVariable }
}
next()
})
然后通过React.renderToString传递本地,这将由FluxStore在客户端上选择。另一种方法,你可以使用数据获取api像falcor,可以通过客户端Action Store通过falcor-http-datasource选择,你不需要快速本地为falcor你用falcor-express和falcor-router构建它
答案 1 :(得分:0)
所以我提出的解决方案非常简单。我只是编写了一行javascript来将值保存到脚本标记内的本地存储中。然后在应用程序启动时从我的flux store读取本地存储。
这是添加到index.html的相关标记:
<script type="text/javascript"><%= config %></script>
这是我在使用模板之前将其拼接到index.html中的字符串:
let configJs = 'localStorage.setItem(\'ADMIN_API\', JSON.stringify(\'' + process.env.ADMIN_API + '/v3/' + '\'));';
const html = template({config: configJs});
res.status(200).send(html);
然后,一旦应用程序启动,我就用它阅读:
import ls from 'local-storage';
....
let api = ls.get('ADMIN_API');
答案 2 :(得分:0)
这使用window
中的窗口全局变量来传递值,但为您提供了一个通用接口来访问浏览器和节点上的值。
在publicEnv.js
:
// Env variable to push to the client. Careful on what you put here!
const publicEnv = [
'API_URL',
'FACEBOOK_APP_ID',
'GA_ID'
];
// These 2 lines make sure we pick the value in the right place on node and the browser
const isBrowser = typeof window !== 'undefined';
const base = (isBrowser ? window.__ENV__ : process.env) || {};
const env = {};
for (const v of publicEnv) {
env[v] = base[v];
}
export default env;
在我的页面的HTML模板文件中:
import publicEnv from 'publicEnv.js';
...
<script>
window.__ENV__ = ${stringify(publicEnv)};
// Other things you need here...
window.__INITIAL_STATE__ = ${stringify(initialState)};
</script>
所以现在我可以在前端和后端获取env变量的值:
import publicEnv from 'publicEnv.js';
...
console.log("Google Analytic code is", publicEnv.GA_ID);
我希望它可以提供帮助。