非确定表格提交,按json存储

    public ResultVo save(@RequestParam Map<String, String> properties) {
        // properties中的数据是以 name=value 形式提交的,为处理方便,存储为标准JSON形式 
        formValueEntity formValueEntity;
        String id = properties.get("id");
        if (id.trim()!=""){
            formValueEntity = valueService.getById(Long.parseLong(id));
            //将map转为标准的JSON形式
            formValueEntity.setData(JSON.toJSONString(properties));
            //formValueEntity.setData(properties.toString());
            valueService.save(formValueEntity);
        }
        // 保存数据
        return ResultVoUtil.SAVE_SUCCESS;
    }
上一篇:Lesson2.1:LinkedList、ConcurrentLinkedQueue、LinkedBlockingQueue对比分析


下一篇:微信小程序--小程序表单getinput优化