ng repeat评论在internet explorer中显示,而在其他angularjs上工作正常

ng repeat评论在internet explorer中显示,而在其他angularjs上工作正常,angularjs,Angularjs,HTML [ { "user_id":95507, "social_id":null, "type":2, "spr_id":0, "link_confirmed":null, "sp":[ { "id":"131556", "user_id":"95507", "spr_id":"1" },

HTML

[
   {
      "user_id":95507,
      "social_id":null,
      "type":2,
      "spr_id":0,
      "link_confirmed":null,
      "sp":[
         {
            "id":"131556",
            "user_id":"95507",
            "spr_id":"1"
         },
         {
            "id":"131557",
            "user_id":"95507",
            "spr_id":"2"
         },
         {
            "id":"131558",
            "user_id":"95507",
            "spr_id":"3"
         },
         {
            "id":"131559",
            "user_id":"95507",
            "spr_id":"4"
         },
         {
            "id":"131560",
            "user_id":"95507",
            "spr_id":"5"
         },
         {
            "id":"131561",
            "user_id":"95507",
            "spr_id":"7"
         }
      ]
   },
   {
      "user_id":95509,
      "social_id":null,
      "type":3,
      "spr_id":1,
      "link_confirmed":null,
      "sp":[

      ]
   },
   {
      "user_id":95510,
      "social_id":null,
      "type":3,
      "spr_id":1,
      "link_confirmed":null,
      "sp":[

      ]
   },
   {
      "user_id":95512,
      "social_id":null,
      "type":2,
      "spr_id":0,
      "link_confirmed":null,
      "sp":[
         {
            "id":"131569",
            "user_id":"95512",
            "spr_id":"1"
         },
         {
            "id":"131570",
            "user_id":"95512",
            "spr_id":"2"
         },
         {
            "id":"131571",
            "user_id":"95512",
            "spr_id":"3"
         }
      ]
   },
   {
      "user_id":95513,
      "social_id":null,
      "type":3,
      "spr_id":1,
      "link_confirmed":null,
      "sp":[

      ]
   },
   {
      "user_id":96276,
      "social_id":null,
      "type":3,
      "spr_id":1,
      "link_confirmed":null,
      "sp":[

      ]
   },
   {
      "user_id":96277,
      "social_id":null,
      "type":3,
      "spr_id":1,
      "link_confirmed":null,
      "sp":[

      ]
   }
]

{{profile.user_id}
{(profile.type==2)?($index>=0&&profile.sp.length-1&&$last-1)?sp[spd.spr_id]+,“:sp[spd.spr_id]:”}
ng repeat
评论在internet explorer中显示,同时在其他浏览器上工作正常AngularJS不知道为什么我没有更改对我不起作用。请帮助我如何解决这个问题,提前谢谢

更新了json格式,以便更好地理解。现在请看一看,让我知道我错在哪里


注意,这仅在Internet Explorer中出现。其他浏览器似乎没有任何问题

请检查代码的第一部分,结构似乎有误哪一部分是正确的?@IgnacioAra JSON。请说得更具体些。@Justin:你能试着创建一个plunkr,看看你能不能复制这个问题供我们参考。如果代码没有被共享,那就没什么帮助了,因为它本来就不应该发生。我认为你在家长中遗漏了一些东西,或者不允许可访问的个人资料用户在这里。请在fiddle中发布。。
<tr ng-repeat="profile in profile_users | filter: { link_confirmed : '!' } | filter: filterExpressions track by $index">
    <td>{{ profile.user_id }}</td>
    <span ng-repeat="spd in profile.sp track by $index">
        {{ (profile.type == 2) ? ($index >= 0 && profile.sp.length - 1 &&  $last-1) ? sp[spd.spr_id] + ", " : sp[spd.spr_id] : '' }}
    </span>
    </td>
</tr>