AngularJS 404错误

时间:2016-02-11 21:06:06

标签: angularjs http-status-code-404

我在其中一条路线的Chrome控制台中收到404错误。

/

第一条路线(/search)运作正常。为什么第二条路线(Failed to load resource: the server responded with a status of 404 (Not Found) )会抛出404错误?

这是Chrome给我的错误:

    .Box {
      position: absolute;
      bottom: 60px;
      right: 0px;
      left: 65px;
      display: block;
      background-color: #fedd2d;
      max-width: 60%;
      padding: 15px;
      opacity: 0.8;
    }

网址为:http://localhost:8000/app/。然而,我的两个模板都在显示。我不明白为什么我会为该网址收到404错误,但我的模板都会显示?

2 个答案:

答案 0 :(得分:0)

这实际上非常简单,并且在我将问题放在一起时解决了它。

错误是由这段代码引起的

<a class="navbar-brand" href="#/">
  <img alt="Brand" src="...">
</a>

这是src属性中的省略号,一旦删除,一切正常。发布以防其他人犯同样的愚蠢错误。

答案 1 :(得分:-1)

这两条路线都指向同一个控制器。这是理想的行为。否则请将搜索路径的控制器更改为不同的控制器以使其正常工作。