尝试配置抛出错误
Trying to configure throws error
我对用于 React 的 aws-sdk 感到困惑,尝试配置它会抛出有点令人困惑的错误,考虑到该对象在调试器中看起来不错,但当我跨过它时抛出错误:TypeError: Unable to get property 'config' of undefined or null reference
代码:
import {AWS, CustomEvent, AMA} from 'aws-sdk';
class App extends Component {
constructor(props) {
debugger;
AWS.config.region = 'us-east-1';
...
我假设一旦导入了 AWS 包含的配置对象,并且如果我要附加调试器(在 debugger;
行)AWS 对象看起来不错 AWS.config 和进一步AWS.config.region 设置为 null,但如果我执行步骤,它会抛出上述错误....有什么想法可能配置错误吗?
我遇到了同样的问题,我用以下方法解决了它:
import AWS from 'aws-sdk';
AWS.config.region = 'us-east-1';
由于某种原因,导致错误的是 import { AWS } 而不是 import AWS
我对用于 React 的 aws-sdk 感到困惑,尝试配置它会抛出有点令人困惑的错误,考虑到该对象在调试器中看起来不错,但当我跨过它时抛出错误:TypeError: Unable to get property 'config' of undefined or null reference
代码:
import {AWS, CustomEvent, AMA} from 'aws-sdk';
class App extends Component {
constructor(props) {
debugger;
AWS.config.region = 'us-east-1';
...
我假设一旦导入了 AWS 包含的配置对象,并且如果我要附加调试器(在 debugger;
行)AWS 对象看起来不错 AWS.config 和进一步AWS.config.region 设置为 null,但如果我执行步骤,它会抛出上述错误....有什么想法可能配置错误吗?
我遇到了同样的问题,我用以下方法解决了它:
import AWS from 'aws-sdk';
AWS.config.region = 'us-east-1';
由于某种原因,导致错误的是 import { AWS } 而不是 import AWS