오류 메시지 "작업 작업에 정의된 결과가 없습니다. 부분 및 결과 {"col1":"col1","col2":"col2"}"는 다음을 나타냅니다. Struts2가 지정된 작업을 찾을 수 없거나 애플리케이션 구성의 결과를 찾을 수 없습니다.
Struts2-JSON 플러그인은 직렬화합니다. 임시 속성이나 getter가 없는 속성을 제외하고 기본적으로 전체 작업을 JSON으로 변환합니다. 그러나 작업의 어느 부분을 직렬화해야 하는지 정의하는 루트 개체를 지정하여 이 동작을 사용자 정의할 수 있습니다.
다음은 코드의 모양에 대한 예입니다.< /p>
값 객체:
public 클래스 MyRow는 Serialized {</p> <pre class="brush:php;toolbar:false">private static final long serialVersionUID = 1L; private String col1; private String col2; // Getters public String getCol1(){ return this.col1; } public String getCol2(){ return this.col2; }
}
액션 클래스:
public 클래스 PartAction은 Serialized {<br></p> <pre class="brush:php;toolbar:false">private static final long serialVersionUID = 1L; private List<MyRow> rows; // Getter public List<MyRow> getRows() { return this.rows; } public String finder() { String result = Action.SUCCESS; rows = new ArrayList<MyRow>(); try { Iterator it = findList.iterator(); while(it.hasNext()) { SearchResult part = (SearchResult) it.next(); MyRow row = new MyRow(); row.setCol1(part.getcol1()); row.setCol2(part.getcol2()); rows.add(row); } } catch (Exception e) { result = Action.ERROR; log.error(e); } return result; }}
스트럿츠.xml 구성:
<패키지 이름="default" 네임스페이스="/ajax" extends="json-default"></strong><br></p></action><pre class="brush:php;toolbar:false"><action name="finder">
jQuery 성공 콜백:
var handlerdata = 함수(데이터) {</strong><br></p>}<pre class="brush:php;toolbar:false">$.each(data, function(index) { alert(data[index].col1); alert(data[index].col2); });
위 내용은 JSON 플러그인을 사용하여 Struts2에서 '작업 action.Part 및 결과에 대해 정의된 결과가 없습니다' 오류를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!