不需要的<span class =“ng-scope”> s </span>

时间:2016-08-21 21:08:41

标签: javascript html angularjs

在Chrome中查看时,我一直收到带有“s”的不需要的span标记。我在网上搜索过,但我还是很难过。请帮忙吗?

Stop AngularJS inserting <span class="ng-scope"></span> using ng-include

看那篇文章。类似的问题,但我认为我的问题是由其他东西引起的。我没有使用ng-include。

如果我能提供更多详情,请告诉我们。

以下是代码https://github.com/benhbaik/crm

以下是public / views / users / all.html以及其下方问题的屏幕截图。

<div class="page-header">
    <h1>
        Users
        <a href="/users/create" class="btn btn-default">
            <span class="glyphicon glyphicon-plus"></span>
            New User
        </a>
   </h1>
</div>

<div class="jumbotron text-center" ng-show="user.processing">
    <span class="glyphicon glyphicon-repeat spinner"></span>
    <p>Loading Users...</p>
</div>

<!-- GETTING RANDOM SPAN TAG HERE w/ "s" -->

<table class="table table-bordered table-striped">
    <thead>
        <tr>
            <th>_id</th>
            <th>Name</th>s
            <th>Username</th>
            <th class="col-sm-2"></th>
        </tr>
    </thead>

    <tbody>
        <tr ng-repeat="person in user.users">
            <td>{{ person._id }}</td>
            <td>{{ person.name }}</td>
            <td>{{ person.username }}</td>
            <td class="col-sm-2">
                <a href="/users/{{ person._id }}" class="btn btn-danger">Edit</a>
                <a href="#" ng-click="user.deleteUser(person._id)" class="btn btn-primary">Delete</a>
            </td>
        </tr>
    </tbody>
</table>

Here is a picture in dev tools.

1 个答案:

答案 0 :(得分:0)

你的代码中有一个拼写错误:

<th>Name</th>s