【问题标题】:Bootstrap tree-view: Tree doesn't show up引导树视图:树不显示
【发布时间】:2019-08-21 07:09:41
【问题描述】:

我是树视图的新手,我试图展示一个基本的树,但它不起作用,我不知道我在哪里犯了错误。

我制作的 test.html 遵循与我的 basic.html 相同的结构(我省去了导航栏、警报等的代码)。我在functions.js中有其他js函数可以正常工作。

test.html:

{% csrf_token %}
{% load groupfilter %}
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
   <head>
       <meta name="viewport" content="width=device-width, initial-scale=1" charset="utf-8">
       <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
       <link rel="stylesheet" href="{% static 'bootstrap-treeview.min.css' %}">
       <script src="{% static 'bootstrap-treeview.min.js' %}"></script>
       <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
       <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
       <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>

    <title>Test</title>
   </head>
        <body>
            <div class="container">
                <div id="tree"></div>
            </div>
            <!-- JavaScript functions -->
            <script src="{% static 'functions.js' %}"></script>
        </body>
</html>

functions.js 的摘录:

$(function(){
    var mytree = [
        {
            text: "Parent 1",
            nodes: [
                {
                    text: "Child 1",
                    nodes: [
                        {
                            text: "Grandchild 1"
                        },
                        {
                            text: "Grandchild 2"
                        }
                    ]
                },
                {
                    text: "Child 2"
                }
            ]
        },
        {
            text: "Parent 2"
        }
    ];

    $('#tree').treeview({data: mytree});
});

【问题讨论】:

    标签: bootstrap-treeview


    【解决方案1】:

    您可以分享您关注的示例链接吗?

    您似乎正在导入 Twitter Bootstrap 4.3.1

    但据我所知,官方 Bootstrap 仍然没有在他们的文档上提供 TreeView。

    【讨论】:

    • 好吧,我正在关注树视图文档 (github.com/jonmiles/bootstrap-treeview),其中包含简单的树示例。是的,我正在使用 Bootstrap 4.3.1。这可能是它不起作用的原因......
    • 如果提供这些是已针对 bootstrap-treeview 进行测试的实际版本。引导 v3.3.4 (>= 3.0.0) jQuery v2.1.3 (>= 1.9.0)
    • @saikuron 我看到它写在自述文件中。只需在相同的环境下再试一次。干杯! P.s:另一种让回购的人尝试更改 Bootstrap 和 jQuery 版本的方法。也许仍在 4.3.1 上工作
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-01-10
    • 2018-11-22
    相关资源
    最近更新 更多