私はJQueryとeasyuiを始めたばかりです。データグリッド コントロールはすばらしいように見えますが、メソッドを GET に設定しているにもかかわらず、URL が毎回 POST で呼び出されています。
<table id="dg" title="Plan details" class="easyui-datagrid" style="width:550px;height:250px"
url="/Plans"
toolbar="#toolbar"
method="GET"
rownumbers="true" fitColumns="true" singleSelect="true">
<thead>
<tr>
<th field="name" width="50">Name</th>
<th field="description" width="100">Description</th>
</tr>
</thead>
</table>
<div id="toolbar">
</div>
誰でもこれで私を助けることができますか?
コーマック・キーオ