导入功能-从前端向后端传递自定义参数原创
金蝶云社区-苏四ss
苏四ss
4人赞赏了该文章 95次浏览 未经作者许可,禁止转载编辑于2023年12月28日 09:19:43


前端导入代码示例:

importIndicatorAction: function () {
        var _self = this;
        //customParam:自定义参数
        var customParam = {
            shruicode: “自定义参数”
        };
        this.doImportData('importIndicator', customParam, undefined);
}

后端导入实现类获取自定义参数:

Map<String, String> map =this.getCustomParams();


赞 4