Home > Web Front-end > JS Tutorial > body text

Detailed explanation of steps to call cache to implement JS method

php中世界最好的语言
Release: 2018-05-14 14:28:19
Original
1283 people have browsed it

This time I will bring you a detailed explanation of the steps for calling the cache to implement the JS method. What are the precautions for calling the cache to implement the JS method? The following is a practical case, let's take a look.

1. What is

method overloading

Method overloading refers to defining multiple methods with the same name in a class, but each method is required to have different parameters The type or number of parameters.

In short: method overloading means repeated method names and different loading parameters.

Please turn left for details: Method Overloading/Baidu Encyclopedia

So how does js implement this? ? ?

2. How to implement js?

First of all, JavaScript does not have the concept of overloading functions/methods, but js provides a method parameter called arguments. You can get the length of the method parameters through the length attribute of this parameter. o~ By the way, we What is implemented today is only overloading according to the parameter length, not the parameter type~~·length,

As for downloading, once the method parameter length is available, a more common switch writing method appears:

var seven={
  dosomething:function(){
    switch(arguments.length){
      case 0:
        console.log(arguments.length);
        //dosomething
        break;
      case 1:
        console.log(arguments.length);
        //dosomething
        break;
       case 2:
        //dosomething
        console.log(arguments.length);
        break;
    }
  }
}
Copy after login

3. Optimization

wow~If there are 10 methods, 10 branches are needed~and it is very difficult to maintain~because each method body is under a case, or written separately A function~

But these are bad~difficult to maintain, and not high enough~So how should we elegantly implement the processing of the same method name with different parameters?

This is where the apply method is used.

Let’s write a

addMethod method for seven.

var seven = {
  addMethod: function (fname, func) {
    var old = this[fname];
    this[fname] = function () {
      if (arguments.length == func.length) {
        return func.apply(this,arguments);
      }
      if (typeof old == 'function') {
        return old.apply(this, arguments);
      }
    }
  }
};
Copy after login
The modified seven is as above, and then before The switch you write can be done like this:

seven.addMethod('dosomething', function (x) {
  console.log(arguments.length);
   //dosomething
});
seven.addMethod('dosomething', function (x,y) {
  console.log(arguments.length);
   //dosomething
});
seven.addMethod('dosomething', function (x,y,z) {
  console.log(arguments.length);
   //dosomething
});
Copy after login
If we want to add a method, we only need to call the addMethod method. Don’t you think it is simpler and clearer?

The principle of this code is actually very simple. It is to cache the old method, and then apply chain calls in sequence according to the parameter length until a method with the same length as the current parameter is found ~ and then called.

func and old are very likely to confuse the newbies. In fact, this is not the case. The features of the JavaScript language are cleverly used here. This old is saved every time. They are all references to the last method, and they are brand new every time, while the old old maintains a reference. What is this? Closure~.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps to implement full-screen scrolling plug-in in ES6

##vue vue-router vuex operation permissions

The above is the detailed content of Detailed explanation of steps to call cache to implement JS method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!