<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Justa Cigar Wish List</title>
<link rel="stylesheet" type="text/css" href="dojoroot/dijit/themes/tundra/tundra.css" />
<link rel="stylesheet" type="text/css" href="dojoroot/dojo/resources/dojo.css" />
<link rel="stylesheet" type="text/css" href="dojoroot/dojox/grid/resources/tundraGrid.css" />
<script type="text/javascript" src="dojoroot/dojo/dojo.js"
    djConfig="parseOnLoad: true"></script><script  type="text/javascript">
    dojo.require("dojo.parser");
    dojo.require("dojo.data.ItemFileReadStore");
    dojo.require("dojox.grid._Grid");
    
</script>
<style>#grid { 
    border: 1px solid #333;
    width: 550px;
    margin: 10px;
    height: 200px;
    font-size: 0.9em;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    
}</style></head>
<body class="tundra"><h1>Justa Cigar Corporation</h1>
<h3>"Sometimes a cigar is a Justa Cigar!"</h3>    
    <div dojoType="dojo.data.ItemFileReadStore" jsId="wishStore" url="cigar_wish_list.json">
    </div>
    
    <table id="grid" dojoType="dojox.grid._Grid" store="wishStore"
         query="{wishId:'*'}" clientSort="true">
        <thead>
           <tr>
              <th field="description" width="15em">Cigar</th>
              <th field="size">Length/Ring</th>
              <th field="origin">Origin</th>
              <th field="wrapper">Wrapper</th>
              <th field="shape">Shape</th>
           </tr>
        </thead>
    </table>
</body>
</html>
cigar_wish_list.json{
   "identifier": "wishId",
   "label": "description",
   "items": [ { 
        "wishId": 4455, "description": "Don Pepin Garcia Delicias", "size": "7-50",
        "origin": "Nicaragua", "wrapper": "Corojo", "shape": "Straight"   
      }, {
        "wishId": 4456, "description": "601 Habano Robusto", "size": "5-50", 
        "origin": "Nicaragua", "wrapper": "Natural", "shape": "Straight"
      }, {
        "wishId": 4457, "description": "Black Pearl Rojo Robusto", "size": "4 3/4-52", 
        "origin": "Nicaragua", "wrapper": "Natural", "shape": "Straight"   
      }, {
        "wishId": 4458, "description": "Padron Churchill", "size": "6 7/8-46",
        "origin": "Nicaragua", "wrapper": "Natural", "shape": "Straight"   
      }, {
        "wishId": 4459, "description": "Davidoff Aniversario No. 2", "size": "7-48", 
        "origin": "Dominican Republic", "wrapper": "Natural", "shape": "Straight"   
      }, {
        "wishId": 4460, "description": "Cohiba Churchill", "size": "7-49", 
        "origin": "Dominican Republic", "wrapper": "Sungrown", "shape": "Straight"   
      }, {
        "wishId": 4461, "description": "Gurkha Legend Torpedo", "size": "6 3/4-53",
        "origin": "Honduras", "wrapper": "Colorado Maduro", "shape": "Straight"   
      }, {
        "wishId": 4462, "description": "Cohiba Black Supremo", "size": "6-54", 
        "origin": "Dominican Republic", "wrapper": "Sungrown", "shape": "Straight"   
      }, {
        "wishId": 4463, "description": "La Flor Dominicana Ligero Mysterio", "size": "6 1/8-54", 
        "origin": "Dominican Republic", "wrapper": "Natural", "shape": "Perfecto"   
      }, {
        "wishId": 4464, "description": "Camacho Triple Maduro Torpedo", "size": "6-54", 
        "origin": "Honduras", "wrapper": "Cameroon", "shape": "Torpedo"   
      }
   ]
}
但最终得到是一个没数据的空表,不知为啥,请高手解答