为 Azure ABP.IO React 移动应用程序设置环境变量
Setting up Environment Variables for Azure ABP.IO React Mobile App
我已创建 abp.io 项目并将其部署到 Azure。我已成功创建数据库和 Web 应用程序。
现在我探索 React 移动前端。我正在尝试将 React 应用程序指向本地主机或 Azure 服务器。
我已经根据文档(https://docs.abp.io/en/abp/latest/Getting-Started-React-Native) 将环境变量 'apiUrl' 和 'issuer' 设置为我的 IP 和我的 azure 网站,并得到如下所示的相同错误。
本地主机错误:
Network Error
The above error occurred in task fetchAppConfig
created by takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
created by _callee
created by rootSaga
Tasks cancelled due to error:
takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
takeLatest(app/setLanguageAsync, setLanguage)
takeLatest(app/logoutAsync, logout)
Azure 错误:
Request failed with status code 500
- node_modules\axios\lib\core\createError.js:15:17 in createError
- node_modules\axios\lib\core\settle.js:16:9 in settle
- node_modules\axios\lib\adapters\xhr.js:53:6 in handleLoad
- node_modules\event-target-shim\dist\event-target-shim.js:818:20 in EventTarget.prototype.dispatchEvent
- node_modules\react-native\Libraries\Network\XMLHttpRequest.js:592:4 in setReadyState
- node_modules\react-native\Libraries\Network\XMLHttpRequest.js:395:6 in __didCompleteResponse
- node_modules\react-native\Libraries\vendor\emitter\EventEmitter.js:189:10 in emit
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:416:4 in __callFunction
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:109:6 in __guard$argument_0
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:364:10 in __guard
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:108:4 in callFunctionReturnFlushedQueue
* [native code]:null in callFunctionReturnFlushedQueue
The above error occurred in task fetchAppConfig
created by takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
created by _callee
created by rootSaga
Tasks cancelled due to error:
takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
takeLatest(app/setLanguageAsync, setLanguage)
takeLatest(app/logoutAsync, logout)
Animated: `useNativeDriver` was not specified. This is a required option and must be explicitly set to `true` or `false`
.
.
.
* [native code]:null in callFunctionReturnFlushedQueue
我遇到了同样的问题我做了以下操作:
- 使用 HTTP,而不是 HTTPS [我认为这可能会解决你的 azure 问题]
- 使用 Conveyor 为我的本地 Web 应用程序获取 URL 而不是使用 localhost,因为没有为移动设备定义本地主机
我已创建 abp.io 项目并将其部署到 Azure。我已成功创建数据库和 Web 应用程序。
现在我探索 React 移动前端。我正在尝试将 React 应用程序指向本地主机或 Azure 服务器。
我已经根据文档(https://docs.abp.io/en/abp/latest/Getting-Started-React-Native) 将环境变量 'apiUrl' 和 'issuer' 设置为我的 IP 和我的 azure 网站,并得到如下所示的相同错误。
本地主机错误:
Network Error
The above error occurred in task fetchAppConfig
created by takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
created by _callee
created by rootSaga
Tasks cancelled due to error:
takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
takeLatest(app/setLanguageAsync, setLanguage)
takeLatest(app/logoutAsync, logout)
Azure 错误:
Request failed with status code 500
- node_modules\axios\lib\core\createError.js:15:17 in createError
- node_modules\axios\lib\core\settle.js:16:9 in settle
- node_modules\axios\lib\adapters\xhr.js:53:6 in handleLoad
- node_modules\event-target-shim\dist\event-target-shim.js:818:20 in EventTarget.prototype.dispatchEvent
- node_modules\react-native\Libraries\Network\XMLHttpRequest.js:592:4 in setReadyState
- node_modules\react-native\Libraries\Network\XMLHttpRequest.js:395:6 in __didCompleteResponse
- node_modules\react-native\Libraries\vendor\emitter\EventEmitter.js:189:10 in emit
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:416:4 in __callFunction
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:109:6 in __guard$argument_0
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:364:10 in __guard
- node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js:108:4 in callFunctionReturnFlushedQueue
* [native code]:null in callFunctionReturnFlushedQueue
The above error occurred in task fetchAppConfig
created by takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
created by _callee
created by rootSaga
Tasks cancelled due to error:
takeLatest(app/fetchAppConfigAsync, fetchAppConfig)
takeLatest(app/setLanguageAsync, setLanguage)
takeLatest(app/logoutAsync, logout)
Animated: `useNativeDriver` was not specified. This is a required option and must be explicitly set to `true` or `false`
.
.
.
* [native code]:null in callFunctionReturnFlushedQueue
我遇到了同样的问题我做了以下操作:
- 使用 HTTP,而不是 HTTPS [我认为这可能会解决你的 azure 问题]
- 使用 Conveyor 为我的本地 Web 应用程序获取 URL 而不是使用 localhost,因为没有为移动设备定义本地主机