13

jqgrid を作成しようとしていますが、テーブルが空です。テーブルはレンダリングされますが、データは表示されません。

PHP呼び出しから返されるデータは次のとおりです。

{
"page":"1",
"total":1,
"records":"10",
"rows":[
{"id":"2:1","cell":["1","image","Chief Scout","Highest Award test","0"]},
{"id":"2:2","cell":["2","image","Link Badge","When you are invested as a Scout, you may be eligible to receive a Link Badge. (See page 45)","0"]},
{"id":"2:3","cell":["3","image","Pioneer Scout","Upon completion of requirements, the youth is invested as a Pioneer Scout","0"]},
{"id":"2:4","cell":["4","image","Voyageur Scout Award","Voyageur Scout Award is the right after Pioneer Scout.","0"]},
{"id":"2:5","cell":["5","image","Voyageur Citizenship","Learning about and caring for your community.","0"]},
{"id":"2:6","cell":["6","image","Fish and Wildlife","Demonstrate your knowledge and involvement in fish and wildlife management.","0"]},
{"id":"2:7","cell":["7","image","Photography","To recognize photography knowledge and skills","0"]},
{"id":"2:8","cell":["8","image","Recycling","Demonstrate your knowledge and involvement in Recycling","0"]},
{"id":"2:10","cell":["10","image","Voyageur Leadership ","Show leadership ability","0"]},
{"id":"2:11","cell":["11","image","World Conservation","World Conservation Badge","0"]}
]}

JavaScript の設定は次のようになります。

$("#"+tableId).jqGrid ({
    url:'getAwards.php?id='+classId,
    dataType : 'json',
    mtype:'POST',
    colNames:['Id','Badge','Name','Description',''],
    colModel : [
        {name:'awardId', width:30, sortable:true, align:'center'},
        {name:'badge', width:40, sortable:false, align:'center'},
        {name:'name', width:180, sortable:true, align:'left'},
        {name:'description', width:380, sortable:true, align:'left'},
        {name:'selected', width:0, sortable:false, align:'center'}
        ],
    sortname: "awardId",
    sortorder: "asc",
    pager: $('#'+tableId+'_pager'),
    rowNum:15,
    rowList:[15,30,50],
    caption: 'Awards',
    viewrecords:true,
    imgpath: 'scripts/jqGrid/themes/green/images',
    jsonReader : { 
        root: "rows", 
        page: "page", 
        total: "total", 
        records: "records", 
        repeatitems: true, 
        cell: "cell", 
        id: "id",
        userdata: "userdata", 
        subgrid: {root:"rows", repeatitems: true, cell:"cell" } 
    },
    width: 700,
    height: 200
});

HTML は次のようになります。

<table class="awardsList" id="awardsList2" class="scroll" name="awardsList" />
<div id="awardsList2_pager" class="scroll"></div>

デフォルトを維持しようとしたため、jsonReader を定義する必要があるかどうかはわかりません。PHPコードが役立つ場合は、投稿することもできます。

4

9 に答える 9

20

私はそれを働かせました!

dataTypeフィールドはdatatypeである必要あります。大文字と小文字が区別されます。

于 2008-11-03T21:40:51.970 に答える
5

この問題は、スクリプトjquery.jqGrid.min.jsをgrid.locale-en.js の前に含める場合にも発生します。コントローラーのメソッド呼び出しに問題がある場合は、これを確認してください。

于 2010-06-07T09:41:15.570 に答える
3

jqGrid 3.6 から jqGrid 3.7.2 に移行したときに同じ問題が発生しました。問題は、JSON が適切に二重引用符で囲まれていないことでした (JSON 仕様で要求されているように)。jqGrid 3.6 は無効な JSON を許容しましたが、jqGrid 3.7 はより厳密です。

ここを参照してください: http://simonwillison.net/2006/Oct/11/json/

無効:

{
page:"1",
total:1,
records:"10",
rows:[
    {"id":"2:1","cell":["1","image","Chief Scout","Highest Award test","0"]},
    {"id":"2:2","cell":["2","image","Link Badge","When you are invested as a Scout, you may be eligible to receive a Link Badge. (See page 45)","0"]},
    {"id":"2:3","cell":["3","image","Pioneer Scout","Upon completion of requirements, the youth is invested as a Pioneer Scout","0"]}
]}

有効:

{
"page":"1",
"total":1,
"records":"10",
"rows":[
    {"id":"2:1","cell":["1","image","Chief Scout","Highest Award test","0"]},
    {"id":"2:2","cell":["2","image","Link Badge","When you are invested as a Scout, you may be eligible to receive a Link Badge. (See page 45)","0"]},
    {"id":"2:3","cell":["3","image","Pioneer Scout","Upon completion of requirements, the youth is invested as a Pioneer Scout","0"]}
]}
于 2010-09-15T05:24:14.127 に答える
1

私もそれを機能させました:データ型は正しいスペルです-例ではそのように示されていますが、ライブラリ内の他のすべてと矛盾しているため、間違えやすいです

私はこのまばらなドキュメントを追いかけるのに非常に疲れており、JavaScriptで使用するのに適切で適切なJSONが、XMLを支持して実際に短いカバレッジを与えられているように感じます。PythonとJavaScriptは、JSONを介して非常に強力な組み合わせですが、この特定のライブラリとの絶え間ない苦労です。

次のような選択肢がある人:

1> jQuery UIテーマを適切にサポートします(丸みを帯びた角を含みます!)(http://datatables.netはテーマをより適切にサポートしています)

2>列のサイズ変更を許可します(http://datatables.netはこれをそのままではサポートしていません)

3>サブグリッドを許可します(http://datatables.netでは、イベントを通じて、ここでやりたいことが何でもできます)

私にお知らせください。私はインターフェースのこの部分に、残りの部分を合わせたものよりも多くの時間を費やしており、実際の例を探したり、「物事を試したり」するのに費やされている時間は、ただ面倒になっています。

S

于 2010-04-14T16:37:21.430 に答える
1

私の場合、問題は次の PHP コード行 (jqGrid デモから取得したもの) によって引き起こされました。

$responce->page = $page;

ここで間違っているのは、$responce最初にオブジェクトを作成せずにオブジェクトのプロパティ ページにアクセスしていることです。これにより、Apache で次のエラー メッセージが表示されました。

Strict Standards: Creating default object from empty value in /home/mariusz/public_html/rezerwacja/apps/frontend/modules/service/actions/actions.class.php on line 35

最後に、スクリプト内の json リーダーにエラー メッセージが送信されていました。

空のオブジェクトを作成して問題を修正しました。

$responce = new stdClass();
于 2012-01-03T22:59:34.233 に答える
1

みんなこれであなたを助けたいだけです。私は次のように働きました:

JSON

var mydata1 = { "page": "1", "total": 1, "records": "4","rows": [{ "id": 1, "cell": ["1", "cell11", "values1" ] },
    { "id": 2, "cell": ["2", "cell21", "values1"] },
    { "id": 3, "cell": ["3", "cell21", "values1"] },
    { "id": 4, "cell": ["4", "cell21", "values1"] }
]};

//重要な行の下にマークを付けます。「json」の代わりにデータ型「jsonstring」が機能しました。

datatype: "jsonstring",

contentType: "application/json; charset=utf-8",

datastr: mydata1,

colNames: ['Id1', 'Name1', 'Values1'],

colModel: [
      { name: 'id1', index: 'id1', width: 55 },
      { name: 'name1', index: 'name1', width: 80, align: 'right', sorttype: 'string' },
      { name: 'values1', index: 'values1', width: 80, align: 'right', sorttype: 'string'}],

よろしく、

于 2011-11-30T12:17:30.727 に答える
1

これは古い投稿かもしれませんが、他の人を助けるために私の成功を投稿します.

JSON は次の形式である必要があります。

{
"rows": [
    {
        "id": 1,
        "cell": [
            1,
           "lname",
            "fname",
            "mi",
            phone,
            "cell1",
            "cell2",
            "address",
            "email"
        ]
    },
    {
        "id": 2,
        "cell": [
            2,
            "lname",
            "fname",
            "mi",
            phone,
            "cell1",
            "cell2",
            "address",
            "email"
        ]
    }
]

}

このモデルは Zend で作成したので、必要に応じて使用できます。好きなように操作してください。

public function fetchall ($sid, $sord)
{
    $select = $this->getDbTable()->select(Zend_Db_Table::SELECT_WITH_FROM_PART);
    $select->setIntegrityCheck(false)
           ->join('Subdiv', 'Subdiv.SID = Contacts.SID', array("RepLastName" => "LastName", 
                                                                "Subdivision" => "Subdivision",
                                                                "RepFirstName" => "FirstName"))
           ->order($sid . " ". $sord);

    $resultset = $this->getDbTable()->fetchAll($select);
    $i=0;
    foreach ($resultset as $row) {
        $entry  = new Application_Model_Contacts();

        $entry->setId($row->id);
        $entry->setLastName($row->LastName);
        $entry->setFirstName1($row->FirstName1);
        $entry->setFirstName2($row->FirstName2);
        $entry->setHomePhone($row->HomePhone);
        $entry->setCell1($row->Cell1);
        $entry->setCell2($row->Cell2);
        $entry->setAddress($row->Address);
        $entry->setSubdivision($row->Subdivision);
        $entry->setRepName($row->RepFirstName . " " . $row->RepLastName);
        $entry->setEmail1($row->Email1); 
        $entry->setEmail2($row->Email2);

        $response['rows'][$i]['id'] = $entry->getId(); //id
        $response['rows'][$i]['cell'] = array (
                                                $entry->getId(),
                                                $entry->getLastName(),
                                                $entry->getFirstName1(),
                                                $entry->getFirstName2(),
                                                $entry->getHomePhone(),
                                                $entry->getCell1(),
                                                $entry->getCell2(),
                                                $entry->getAddress(),
                                                $entry->getSubdivision(),
                                                $entry->getRepName(),
                                                $entry->getEmail1(),
                                                $entry->getEmail2()
                                            );
        $i++;

    }
    return $response;
}
于 2011-02-18T05:12:58.550 に答える