Javascript 尝试将Json数据从web url显示到表中

Javascript 尝试将Json数据从web url显示到表中,javascript,html,Javascript,Html,您可以获取这个json并将其放入循环中,遍历json的长度,然后将数据显示到表中 我就是这样解决的 "crops": [ { "Crop": "Red Beans", "Date": "2018-Feb-28", "Market": "Gulu", "Price": "5002" }, { "Crop": "Red Beans", "Date": "2018-Feb-28", "Market": "Busia", "Price": "4889" },

您可以获取这个json并将其放入循环中,遍历json的长度,然后将数据显示到表中

我就是这样解决的

"crops": [
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Gulu", 
  "Price": "5002"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Busia", 
  "Price": "4889"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Kasese", 
  "Price": "5002"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Busia", 
  "Price": "4889"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Gulu", 
  "Price": "5002"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Kasese", 
  "Price": "4999"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Busia", 
  "Price": "4887"
}, 
{
  "Crop": "Red Beans", 
  "Date": "2018-Feb-28", 
  "Market": "Gulu", 
  "Price": "4999"
}
]}


除了json数据外,您没有提供任何代码,也没有说明遇到的任何问题/麻烦。祝贺您,您已经显示了!!json的url是,。我想将url中的数据输入html表
<?php
            try{
                $url = 'the json url goes here'; // path to your JSON file
                $data = file_get_contents($url); // put the contents of the file into a variable
                $characters = json_decode($data);
                echo '<div class="panel-heading">
            <h3 align="center">Market Prices for ';  echo $characters[0]->Crop;
                echo '</h3>
        </div>';
                echo '<div class="panel-body">
            <table class="table table-striped table-hover border" style="font-family: cambria">
                <thead>
                <tr>
                    <th>Market</th>
                    <th>Date</th>
                    <th>Price</th>
                </tr>
                </thead>
                <tbody>';
                foreach ($characters as $character) {
                    echo '<tr>';
                    echo '<td>' . $character->Market . '</td>';
                    echo '<td>' . $character->Date . '</td>';
                    echo '<td>' . $character->Price . '</td>';
                    echo '</tr>';
                }

                echo '</tbody>
        </table>
    </div>';
            }
            catch (Exception $e){
                echo '<p align="center">No Internet Connection, please try again</p>';
            }
            ?>