0
https://github.com/vipul-verma/naysa
如果你下載並在本地運行它的工作原理。
這是預覽頁面:
https://rawgit.com/vipul-verma/naysa/master/index.html
問題: Rawgit.com只diplays菜單它沒有加載從滑塊和有關網頁的意見。
任何解決方案!
https://github.com/vipul-verma/naysa
如果你下載並在本地運行它的工作原理。
這是預覽頁面:
https://rawgit.com/vipul-verma/naysa/master/index.html
問題: Rawgit.com只diplays菜單它沒有加載從滑塊和有關網頁的意見。
任何解決方案!
您的templateUrls是絕對的,因此當url不是root時(如此在rawgit)加載失敗。它嘗試加載https://rawgit.com/partials/slider.html
而不是https://rawgit.com/vipul-verma/naysa/master/partials/slider.html
。
試着改變早期reply..silly錯誤
views: {
'viewSlider' : {
templateUrl: "/partials/slider.html"
},
'viewAbout' : {
templateUrl: "/partials/about.html"
}
}
到
views: {
'viewSlider' : {
templateUrl: "partials/slider.html" // <- remove slash on start
},
'viewAbout' : {
templateUrl: "partials/about.html" // <- remove slash on start
}
}
感謝先生,但是從來沒有想到的是感謝你 – Sam