エラー メッセージ「アクション action に対して結果が定義されていません。パートと結果{"col1":"col1","col2":"col2"}" は、Struts2 がアプリケーション構成内で指定されたアクションまたは結果を見つけることができないことを示します。
Struts2-JSONプラグインは、一時的なプロパティやゲッターのないプロパティを除き、デフォルトでアクション全体を JSON にシリアル化します。ただし、アクションのどの部分をシリアル化するかを定義するルート オブジェクトを指定することで、この動作をカスタマイズできます。
コードがどのように見えるかの例を次に示します。 /p>
値オブジェクト:
public class MyRow は Serializable {<div class="code" style="position:relative; padding:0px; margin:0px;"><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 class PartAction は Serializable {</p> <div class="code" style="position:relative; padding:0px; margin:0px;"><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; }
}
Struts.xml構成:
<package name="default" namespace="/ajax" extends="json-default"><br></p> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><action name="finder">
jQuery成功コールバック:
var handledata = function(data) {<br></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">$.each(data, function(index) { alert(data[index].col1); alert(data[index].col2); });
以上がJSON プラグインを使用した Struts2 の「アクション action.Part および result に結果が定義されていません」エラーを解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。