• part 36 AngularJS route reload


    In this video we will discuss angular route service reload() method. This method is useful when you want to reload just the current route instead of the entire app. Let us understand this with an example. 



    We will continue with the same example that we have been working with in the previous videos. When we navigate to http://localhost/students we see the list of students. Notice that when you click on the same students link, nothing happens. This means if we insert a new record in the database table and issue a request to the same route, you may not see the new records. 

    One of the ways to see the new data is by clicking on the browser refresh button. The downside of this is that the entire app is reloaded. This means all the resources required to run your app will be reloaded. You can see all the resource requests made on the network tab in the browser developer tools. 

    The other way is to reload just the current route. Here are the steps. 

    Step 1 : Modify the studentsController function in script.js

    .controller("studentsController", function ($http, $route) {
        var vm = this;
     
        vm.reloadData = function () {
            $route.reload();
        }
     
        $http.get("StudentService.asmx/GetAllStudents")
                    .then(function (response) {
                        vm.students = response.data;
                    })
    })


    Please note : 
    1. $route service in injected in the controller function
    2. reloadData() function is attached to the view model (vm) which will be available for the view to call. This method simply calls reload() method of the route service. 

    Step 2 : Modify the partial template (students.html). Please note that we have included a button which calls reloadData() method when clicked. 

    <h1>List of Students</h1>
    <ul>
        <li ng-repeat="student in studentsCtrl.students">
            <a href="students/{{student.id}}">
                {{student.name}}
            </a>
        </li>
    </ul>
    <button ng-click="studentsCtrl.reloadData()">Reload</button>


    At this point
    1. Run the app
    2. Navigate to http://localhost/students. You should see list of students.
    3. Insert a new record in the database table
    4. Open browser developer tools
    5. Click the Reload button 

    There are 2 things to notice here
    1. The newly added record will be shown on the view
    2. Only the resources required to reload the current route are requested from the server

  • 相关阅读:
    Data Block Structure (Try to Understand...)
    Some pieces of "Scripting"
    奥数模块之小学一年级版
    mysql 新增索引 sql
    mysql 导出数据 每个表的前n条数据 mysqldump limit
    Servlet的urlpattern详解(转)
    过滤器与拦截器的区别(转)
    用csv导出文件时,每个cell加上双引号后,可以原样输入cell中的内容,不管是否cell中是否包含逗号或者换行,但是如果包含双引号,则换行失效,解决方法如下
    java.lang.OutOfMemoryError: Java heap space 和 java.lang.OutOfMemoryError: PermGen space 解决方法
    解决 eclipse svn插件 状态图标不显示
  • 原文地址:https://www.cnblogs.com/gester/p/6535412.html
Copyright © 2020-2023  润新知