我是使用 bootstrap 和 json 文件的新手,我遇到了以下问题:
我有以下代码:
<div class="container">
<h1 class="text text-success text-center ">Kontoauszug</h1>
<table id="table" data-toggle="table" data-url="/json/data.json">
<thead>
<tr>
<th data-field="auszug.betrag">ID</th>
<th data-field="auszug.unix">Item Name</th>
<th data-field="auszug.transaktionsart">Item Price</th>
</tr>
</thead>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/bootstrap-table@1.16.0/dist/bootstrap-table.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<link rel="stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href= "https://unpkg.com/bootstrap-table@1.16.0/dist/bootstrap-table.min.css">
<link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.18.0/dist/bootstrap-table.min.css">
我正在使用的 json 具有以下结构:
{
"auszug": {
"1604400036082-3450": {
"betrag": -367.5,
"von/an_uuid": "Test1",
"von/an": "Test1",
"autorisiert-durch": "SYSTEM",
"unix": 1604400036,
"transaktionsart": "Lohnzahlung"
},
"1604406781759-8437": {
"betrag": 85.17,
"von/an": "Test2",
"autorisiert-durch": "SYSTEM",
"unix": 1604406782,
"transaktionsart": "Überweisung"
},
"1604395596115-5983": {
"betrag": 1226.48,
"von/an": "Test3",
"autorisiert-durch": "SYSTEM",
"unix": 1604395596,
"transaktionsart": "Überweisung"
}
},
"kontonummer": "DEF05487151498683",
"kontostand": 44641548.66,
"success": true
}
但是当我尝试运行代码时,我得到“找不到匹配的记录”。如何将这样的 json 数据获取到表中?
jeck猫
相关分类