SliceOnion
2015-05-16 08:10:29 +08:00
试试 angular-ui-router 的 view 嵌套
比如:
index.html
<div ui-view></div>
other.html
<p> tempalte 1</p>
map.html
<div>
<p> tempalte 2</p>
<div ui-view></div>
</div>
map.detail.html
<map></map>
ui-view 类似 ng-view
请求 /index 的时候, index.html 中的ui-view 加载 other.html
请求 /map 的时候, index.html 中的 ui-view 加载 map.html
请求 /map/1/detail 的时候,index.html 中的 ui-view 先加载 map.html ,然后 map.html 中的 ui-view 加载 map.detail.html
这样应该能满足 html 结构的不同