在Struts2中从2d arraylist从jsp获取数据到java

时间:2016-04-12 07:19:41

标签: jsp arraylist struts2

我正在使用Struts2框架。以下是来自jsp文件的代码。我为列表制作了getter和setter。但是列表在我的动作类中返回null。 数据以2d列表的形式提取。数据显示正确。我能够查看数据但无法检索它。你能提供解决方案,为什么我无法在我的Action类中获取列表

'use strict';

import React from 'react';

function BaseComponent(ComposedComponent) {
    return class extends React.Component {
        static displayName = "BaseComponent";

        constructor(props) {
            super(props);
        }

        updateState(obj) {
            if (this.isMounted() && obj) {
                this.setState(obj);
            }
        }

        render() {
            return (

                <ComposedComponent {...this.props} {...this.states} />
            )
        }
    }
}

export default BaseComponent;

0 个答案:

没有答案