WAMP Laravel - Sending API requests from one local site to another mixes up environment variables(WAMP Laravel - 将 API 请求从一个本地站点发送到另一个站点会混淆环境变量)
问题描述
我正在开发我开发的另一个网站将使用的 API 服务.因此,在本地构建和测试时,显然我希望站点的两个本地副本都能正常工作.但是,它似乎混淆了 environment
变量.
I am developing an API service that another site I've developed will be using. So locally when building and testing, obviously I want both local copies of the site to work. However, it seems to mix up the environment
variables.
例如:
站点 A
有APP_URL=http://a.local
站点 B
有APP_URL=http://b.local
- 我从
Site A
代码向http://b.local/test 发送
GET
请求(使用Guzzle
) Site B
中的/test
端点只是简单地转储出dump(env('APP_URL'))
Site A
检索到的结果是"http://a.local"
- 预期结果:
http://b.local"
Site A
hasAPP_URL=http://a.local
Site B
hasAPP_URL=http://b.local
- I send a
GET
Request (usingGuzzle
) fromSite A
code tohttp://b.local/test
- The
/test
endpoing inSite B
simply dumps outdump(env('APP_URL'))
- Result retrieved by
Site A
is"http://a.local"
- Expected result:
"http://b.local"
所以 Site B
中的代码使用从 Site A
加载的环境变量运行.这是一个问题,因为 Site B
无法访问正确的数据库,它正在尝试使用 Site A
的数据库.
So the code in Site B
is running with environment variables loaded from Site A
. This is an issue as Site B
cannot access the correct database, it's trying to use the Site A
's database.
这是我的本地设置(Win10 + WAMP)、PHP 设置、Laravel 设置的问题吗?
Is this an issue with my local setup (Win10 + WAMP), PHP settings, Laravel settings?
推荐答案
我也遇到了这个问题,提到了这里.它的解决方案是在两个项目中运行 php artisan config:cache 以缓存 .env 文件中的配置或修补 这里.
I also encountered this issue, and it is mentioned here. The resolution for it is to run php artisan config:cache in both projects to cache configuration from .env files or patch the code from here.
这篇关于WAMP Laravel - 将 API 请求从一个本地站点发送到另一个站点会混淆环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:WAMP Laravel - 将 API 请求从一个本地站点发送到另一个站点会混淆环境变量
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01