链接引导选项卡服务器的URL(Linking Bootstrap tabs to server ur

2019-09-28 13:17发布

看起来有一直在这么多讨论了,但我不能让我的代码工作。

我有一个Django项目和模板引导片药片。 我想选项卡菜单丸绑定到我的Django项目的网址。 我只是无法得到读取的Uncaught Error: Syntax error, unrecognized expression: /employee_user_info/40/错误的客户端。 这里是我的代码:

HTML:

<div class="container">
        <h2>{{person_details_form.second_nm_rus.value}} {{person_details_form.first_nm_rus.value}} {{person_details_form.middle_nm_rus.value}}</h2>
        <ul class="nav nav-pills">
            <li class="active"><a data-toggle="pill" href="#home">Tab 1</a></li>
            <li><a data-toggle="pill" href='/employee_user_info/{{employee_unique_id}}/'>Tab 2</a></li>
            <li><a data-toggle="pill" href="#menu2">Tab 3</a></li>
        </ul>

        <div class="tab-content" style="margin-top:2%">
            <div id="home" class="tab-pane fade in active">
                <div class="container">
                    <!-- Something -->
                </div>
            </div>
        </div>

Django的URL配置

 url(r'^employee_user_info/(?P<employee_unique_id>\d+)/$',employee_views.profile_user_info, name ='employee_user_info'),

JS

var navpills = $('.nav-pills');
$(function () {
    // activate tab on click
    navpills.on('click', 'a', function (e) {
      var $this = $(this);
      // prevent the Default behavior
      e.preventDefault();
      // send the hash to the address bar
      window.location.hash = $this.attr('href');
      // activate the clicked tab
      $this.tab('show'); // The error arises here
    });

    $(window).bind('hashchange', refreshHash);

    // read has from address bar and show it
    if(window.location.hash) {
      // show tab on load
      refreshHash();
    }
});
function refreshHash() {
      navpills.find('a[href="'+window.location.hash+'"]').tab('show');
    }

更新:

在客户端发生的错误,当我点击选项卡2。

更新2

按Tab 2时,该网址将成为http://127.0.0.1:8000/employee_profile_main/40/#/employee_user_info/40/我猜,责任止于此

Answer 1:

你不能设置hrefa/ 。 我猜测它作为选择。



文章来源: Linking Bootstrap tabs to server urls