gpt4 book ai didi

jquery - 使用 jQuery jPut 将 JSON 转换为 HTML

转载 作者:行者123 更新时间:2023-12-01 00:18:11 24 4
gpt4 key购买 nike

我正在学习 jQuery jPut JSON to HTML,但是在学习这个插件时,我在尝试将一些 JSON 数据转换为 HTML 时遇到了困难。

我提供了 JSON 数据的示例。我如何将其转换为 HTML?我还没找到解决办法。

{
"info":[
{
"headername": "json-table",
"title": "json-table",
"description": "jQuery plugin for rendering custom tables from JSON data.",
"keywords": ["table", "json", "ui"],
"version": "0.1.3",
**"author": {
"authorname": "Klaus Ganser",
"url": "http://kganser.com"
}**,
"maintainers": [{
"assname": "Klaus Ganser",
"url": "http://kganser.com"
}],
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}],
"bugs": "https://github.com/kganser/json-table/issues",
"homepage": "http://kganser.com/json-table.html",
"docs": "http://kganser.com/json-table.html",
"dependencies": {
"jquery": ">=1.0"
}
}]
}

这是我的 HTML 文件:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/jput.min.js"></script>
<script>
$(document).ready(function(){

//The div you want to upload
$('#detailsShow').jPut({
dataName:'info',
ajax_url:'json-table.jquery.json',
ajax_type:'post',
prepend:true,
name:'details', //jPut Template name
error:function(msg)
{
alert(msg);
}
});


});
</script>
</head>

<body>
<!--jPut HTML Template (it will he hidden)-->
<div jput="details">
<h3>{{headername}}</h3>
<ul>
<li>Title: {{title}}</li>
<li>Description: {{description}}</li>
<li>Keywords: {{keywords}}</li>
<li>Version: {{version}}</li>
<li><a href="{{url}}">{{authorname}}</a></li>
</ul>
</div>

<div id="detailsShow"></div>
</body>
</html>

最佳答案

问题出在你的json上。 json 无效。

始终尝试检查您的 json 是否有效。您可以在本站http://jsonlint.com/检查您的json是否有效。 .

您的 json 无效,因为 **"author": { 附近有 *请删除那个*。它会工作得很好。

关于jquery - 使用 jQuery jPut 将 JSON 转换为 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26008698/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com