繁体   English   中英

无法在 React Native 中发现我的语法错误?

[英]Can't spot my syntax error in React Native?

我正在尝试在DynamoDB创建一个表,但问题是,为什么我收到一个错误,说我的代码中缺少, 我试过将它放在.createTable()方法的末尾和.init()方法的末尾,但即使这样也不起作用。

这是我的.js文件:

// Partition key = "user_id"
// Table name = "user_choice"

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { ScrollView, Text, View, Button } from 'react-native';
import { logout } from '../redux/actions/auth';
import DropdownMenu from 'react-native-dropdown-menu';
import Icon from './Icon';
import {DynamoDB} from 'react-native-dynamodb';

let dynamodb = DynamoDB.init({
    credentials: {
        AccessKeyId: 'Something',
        SecretKey: 'Something'
    }
    // region: 'us-east-1' - default, optional
    // version: '20120810' - default, optional
})

dynamodb.createTable(params, function(err, data) {
    console.error("Unable to create table. Error JSON:", JSON.stringify(err, null, 2));
    console.log("Created table. Table description JSON:", JSON.stringify(data, null, 2));
}

class Secured extends Component {
    render() {
        var data = [["Something"], ["Something"], ["Something"], ["Something"]];

        return(
            <ScrollView style={{padding: 20}}>
                <Icon/>

                <Text style={{fontSize: 27}}>
                    {`Welcome ${this.props.username}`}
                </Text>

                <View style={{flex: 1}}>

                    <DropdownMenu style={{flex: 1}}
                                  bgColor={"purple"}  //the background color of the head, default is grey
                                  tintColor={"white"} //the text color of the head, default is white
                                  selectItemColor={"orange"} //the text color of the selected item, default is red
                                  data={data}
                                  maxHeight={410}  // the max height of the menu
                                  handler={(selection, row) => alert(data[selection][row])} >

                        <View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}} >
                        </View>
                    </DropdownMenu>

                </View>

                <View style={{margin: 20}}/>

                <Button onPress={(e) => this.userLogout(e)} title="Logout"/>

            </ScrollView>
        );
    }
}

const mapStateToProps = (state, ownProps) => {
    return {
        username: state.auth.username
    };
}

const mapDispatchToProps = (dispatch) => {
    return {
        onLogout: () => { dispatch(logout()); }
    }
}

export default connect(mapStateToProps, mapDispatchToProps)(Secured);

在此处输入图片说明

dynamodb.createTable(params, function(err, data) {
    console.error("Unable to create table. Error JSON:", JSON.stringify(err, null, 2));
    console.log("Created table. Table description JSON:", JSON.stringify(data, null, 2));
}

缺少结局)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM