我們有一個漫畫閱讀網站,我們正試圖用AngularJS Our Current Website with PHP重建它。我們取得了很多進展,但仍停留在這裏。在主頁上,火影忍者按鈕「649」像當前的一樣。當我們點擊它時,它必須加載火影忍者第649章的圖像。但它的負載空白頁。下面是我們的代碼:AngularJS漫畫閱讀網站
我們的JSON:
[
{
"seri": "Bleach",
"random": [
{
"klasor": "787",
"yol": [
"path/to/1.jpg",
"path/to/2.jpg",
"path/to/3.jpg"
]
},
{
"klasor": "788",
"yol": [
"path/to/1.jpg",
"path/to/2.jpg",
"path/to/3.jpg"
]
}
]
},
{
"seri": "Naruto",
"random": [
{
"klasor": "332",
"yol": [
"path/to/1.jpg",
"path/to/2.jpg",
"path/to/3.jpg"
]
},
{
"klasor": "333",
"yol": [
"path/to/1.jpg",
"path/to/2.jpg",
"path/to/3.jpg"
]
}
]
}
]
相關App.js部分:
$stateProvider
.state('oku', {
url: "/oku/:name/:id",
views: {
"viewC": { templateUrl: "oku.html",
controller: "nbgCtrl",},
},
})
.factory('MangaService', function($http) {
var mService = {};
var url = '/uzak/remote1.php?callback=JSON_CALLBACK';
mService.allMangas = $http.get(url);
// retrieve your full JSON into mService.allMangas here
// you could additionally track states like loading/error
mService.getMangaSeri = function(name) {
return mService.allMangas.filter(function (el) {
return el.seri == name;
})[0];
}
mService.getMangaSeriKlasor = function(name, num) {
var seri = mService.getMangaSeri(name);
return seri.random.filter(function (el) {
return el.klasor == num;
})[0];
}
return mService;
})
.controller('nbgCtrl', function($scope, MangaService) {
MangaService.allMangas.success(function(verHemen){
$scope.bilgiler = verHemen;
})
})
火影忍者649按鈕,鏈接就像是 「奧/火影忍者/ 649」,加載奧.html和「漫畫」來自另一個JSON。
<a ui-sref="oku({id:manga.last, name:manga.name})" class="waves-effect waves-light btn">{{manga.last}}</a>
相關oku.html部分,oku.html是其中圖像顯示:
<div class="col s8 offset-s2" ng-repeat="bilgi in bilgiler.random">
<img ng-repeat="mypath in bilgi.yol" ng-src="http://localhost/{{mypath}}">
</div>
所以我們的問題只是我們如何顯示,使用angularJS圖像?
這沒有奏效。我認爲問題是我的代碼的過濾部分。 'return $ filter('filter')(res.data,{klasor:$ stateParams.id},true)[0];' – Nasuh
你可以在你的問題中添加NBG代碼嗎?除了上面答案中的明顯部分之外,恐怕我還在努力弄清楚全貌。 – bgse
我加了。它是獲取JSON數據的工廠。 – Nasuh