Map list=(Map)ActionContext.getContext().get("request");
    list.put("list", list);
为什么拷贝过去不管用,而手敲就管用?

解决方案 »

  1.   

    有谁看懂了这问的啥,帮我解释下。
    list.put("list",list);
    map集合本身加一个自己的对象,有什么特殊意义么?
      

  2.   

    List list = new TeacherServices().teacherSelectServices(teacher,
    college);
    Map m = (Map) ActionContext.getContext().get("request");
    m.put("list", list);
    明白了吗?
      

  3.   

    你所谓的 "为什么拷贝过去不管用,而手敲就管用?"具体点,是从哪里copy到哪里啊?