将 JSON 数据加载到 Bootstrap 模式中

Posted

技术标签:

【中文标题】将 JSON 数据加载到 Bootstrap 模式中【英文标题】:Load JSON data into a Bootstrap modal 【发布时间】:2014-10-17 08:14:34 【问题描述】:

我想加载一个 JSON 文件,该文件在 Bootstrap 模式中创建一个列表。我已经设置好了,如果你点击一个人的照片,就会弹出模态框。

<li class="project span3" data-type="pfa">
    <a data-toggle="modal" data-target="#myModal" class="thumbnail">
        <img src="img/anon.jpg"  />
        <h1>Kenneth Atkins</h1>
        <p>[Description here]</p>
    </a>     
</li>

以下是 JSON 数据的示例:

    var florida_exoneration = [
  
    "last_name":"Atkins",
    "first_name":"Kenneth",
    "age":16,
    "race":"Caucasian",
    "state":"FL",
    "crime":"Sexual Assault",
    "sentence":"10 years",
    "conviction":2004,
    "exonerated":2008,
    "dna":"",
    "mistaken witness identification":"",
    "false confession":"",
    "perjury/false accusation":"Y",
    "false evidence":"",
    "official misconduct":"",
    "inadequate legal defense":"",
    "compensation":""
    
]

我希望模态框在框内显示类似这样的内容:

Title = "first_name + last_name"
Age = "age"
Race = "race"
State = "state"
""
""

我还想确保数据与图片相关联,以免模态框混淆。如果这有点令人困惑,我很抱歉。如果有人有任何问题,我会尽力澄清。

【问题讨论】:

【参考方案1】:

方法一:使用Ajax

每次用户点击图片时,您都会从点击的图片中获取 id,然后向服务器发送 Ajax 请求以获取 JSON 对象。

html

<ul>
    <li class="project span3" data-type="pfa">
    <a href="#" data-id="2" class="thumbnail">
        <img src="img/anon.jpg"  />
        <h1>Kenneth Atkins</h1>
        <p>[Description here]</p>
    </a>     
    </li>
</ul>

javascript

(function($) 
    var infoModal = $('#myModal');
    $('.thumbnail').on('click', function()
        $.ajax( 
          type: "GET", 
          url: 'getJson.php?id='+$(this).data('id'),
          dataType: 'json',
          success: function(data) 
            htmlData = '<ul><li>title: '+data.first_name+'</li><li>age: '+data.age+'</li></ul>';
            infoModal.find('.modal-body').html(htmlData);
            infoModal.modal('show');
          
        );

        return false;
    );
)(jQuery);

方法二:使用隐藏的div

不需要任何 Ajax 请求,但您需要创建一个隐藏的 div,其中包含您要在模态中显示的所有信息

HTML

<ul>
    <li class="project span3" data-type="pfa">
    <a href="#" class="thumbnail">
        <img src="img/anon.jpg"  />
        <h1>Kenneth Atkins</h1>
        <p>[Description here]</p>
        <div class="profile hide">
            <ul>
                <li>title: Atkins Kenneth</li>
                <li>Age: 16</li>
            </ul>
        </div>
    </a>     
    </li>
</ul>

JavaScript

(function($) 
    var infoModal = $('#myModal');
    $('.thumbnail').on('click', function()
        htmlData = $(this).find('.profile').html();
        infoModal.find('.modal-body').html(htmlData);
        infoModal.modal('show');
        return false;
    );
)(jQuery);

【讨论】:

以上是关于将 JSON 数据加载到 Bootstrap 模式中的主要内容,如果未能解决你的问题,请参考以下文章

如何将部分视图加载到 Bootstrap 4 模式中

将信息动态加载到 Twitter Bootstrap 模式

使用 Apache Beam 和数据流将许多 json 加载到 BQ - json 模式错误

bootstrap的table怎么绑定后台返回的json数据

将函数绑定到 Twitter Bootstrap 模式关闭

将视图渲染到 ExpressJS 中的变量中(用于 AJAX 响应)