Angular Ionic新闻应用程序UI路由


只怕再见是故人
2025-03-26 04:06:47 (8天前)

我正在尝试使用Angular和Ionic构建新闻订阅源应用程序。我停留在这一阶段,涉及UI路由和http请求的处理,我不知道从这里去哪里。在主页上,此应用程序显示类似这样的新闻频道列表

这些数据是从json文件中获取的,就像这样


  1. {
    status”: ok”,
    sources”: [
    {
    id”: abc-news-au”,
    name”: ABC News (AU)”,
    description”: Australias most trusted source of local, national and world news. Comprehensive, independent, in-depth analysis, the latest business, sport, weather and more.”,
    url”: http://www.abc.net.au/news“,
    category”: general”,
    language”: en”,
    country”: au”,
    sortBysAvailable”: [
    top
    ]
    },
    {
    id”: ars-technica”,
    name”: Ars Technica”,
    description”: The PC enthusiasts resource. Power users and the tools they love, without computing religion.”,
    url”: http://arstechnica.com“,
    category”: technology”,
    language”: en”,
    country”: us”,
    sortBysAvailable”: [
    top”,
    latest
    ]
    }]
    }

现在我的目标是,当有人点击任何报纸时,我都应该获取来源[i] .id,并使用它来修改网址并将其传递给另一个http()。get,并使用数据将其显示在另一页上。我该怎么做 ?有什么建议?

2 条回复
  1. 1# 春风助手 | 2020-08-05 18-17

    在此处查看演示http://plnkr.co/edit/Pmi205TrjyX4hfJsG8Zo?p=preview

    其中包含您的所有情况,并让我知道您的反馈意见

    HTML:

    1. <!DOCTYPE html>
    2. <html ng-app="plunker">
    3. <head>
    4. <link href="style.css" rel="stylesheet" />
    5. <script data-require="angular.js@1.5.x" src="https://code.angularjs.org/1.5.8/angular.js" data-semver="1.5.8"></script>
    6. <script data-require="ui-router@*" data-semver="1.0.0-beta.2" src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/1.0.0-beta.2/angular-ui-router.js"></script>
    7. <script src="app.js"></script>
    8. </head>
    9. <body>
    10. <a ui-sref="home">Home</a>
    11. <div ui-view></div>
    12. </body>
    13. </html>

    JS:

    1. var app = angular.module('plunker', ['plunkerConfig']);
    2. angular.module('plunkerConfig', ['ui.router']).config(function($stateProvider, $urlRouterProvider) {
    3. $stateProvider
    4. .state("home", {
    5. url: '/home',
    6. templateUrl: 'home.html',
    7. controller: 'HomeController'
    8. })
    9. .state("news", {
    10. url: '/home/:newsId',
    11. templateUrl: 'news.html',
    12. controller: 'NewsController'
    13. });
    14. $urlRouterProvider.otherwise('/home');
    15. });
    16. app.controller('HomeController', function($scope, $state) {
    17. $scope.newsChannel = {
    18. "status": "ok",
    19. "sources": [
    20. {
    21. "id": "abc-news-au",
    22. "name": "ABC News (AU)",
    23. "description": "Australia's most trusted source of local, national and world news. Comprehensive, independent, in-depth analysis, the latest business, sport, weather and more.",
    24. "url": "http://www.abc.net.au/news",
    25. "category": "general",
    26. "language": "en",
    27. "country": "au",
    28. "sortBysAvailable": [
    29. "top"
    30. ]
    31. },
    32. {
    33. "id": "ars-technica",
    34. "name": "Ars Technica",
    35. "description": "The PC enthusiast's resource. Power users and the tools they love, without computing religion.",
    36. "url": "http://arstechnica.com",
    37. "category": "technology",
    38. "language": "en",
    39. "country": "us",
    40. "sortBysAvailable": [
    41. "top",
    42. "latest"
    43. ]
    44. }]
    45. };
    46. $scope.fetchSources = function(id) {
    47. $state.go('news', {'newsId': id});
    48. };
    49. });
    50. app.controller('NewsController', function($scope, $stateParams, $http) {
    51. $scope.title = $stateParams.newsId;
    52. $scope.newsDescription = 'Loading the description...';
    53. $http.get($stateParams.newsId + '.json').then(function(response) {
    54. $scope.newsDescription = response.data.description;
    55. }, function(response) {
    56. console.log('Request failed');
    57. });
    58. });
登录 后才能参与评论