angular2--Tour of Heroes學習和分析--路由

引入路由模塊時的一個報錯


No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.

解決辦法


<head>  

<!-- 加上這個標籤 -->
<base href="/">  

...  

</head>

緣由分析


"The tells the Angular router what is the static part of the URL. The router then only modifies the remaining part of the URL"ide

大概意思:angular路由對象需這麼一個標籤,來告訴它url的靜態部分,即到時候不須要修改的部分。 而剩下的路由去修改。url

相關文章
相關標籤/搜索