Home Web Front-end JS Tutorial JavaScript Fun Questions: Dependency Injection

JavaScript Fun Questions: Dependency Injection

Feb 13, 2017 pm 04:18 PM

You must have heard of the Dependency Injection (DI) pattern, right?

Whether it is the messy Spring framework on the back end, or the front-end trend angular.js, dependency injection can be seen everywhere.

The term is a bit obscure, but the core idea is very simple.

Using a common saying, "If you want wind, you will get wind, if you want rain, you will get rain" , or "When you have food, you can open your mouth, and if you have clothes, you can reach out" .

You may still be a little confused after listening to my explanation. Let me give you an example first.

The following are some modules, they are also called "dependencies", which are stored in a hash object:


var deps = {
  'firstDependency': function () {return 'this is firstDependency';},
  'secondDepency': function () {return 'this is secondDepency';},
};
Copy after login

The following is a dependency injection manager, which will be new when the time comes:


var DI = function (dependency) {
  this.dependency = dependency;
};
Copy after login

At the time of new , just pass deps as a parameter.

Okay, now comes the crux of the problem. What we need to write:


DI.prototype.inject = function (func) {......};
Copy after login

This inject injection method is bound to the prototype of DI and receives A function as a parameter.

So how to use it?


	var di = new DI(deps);

	var myDependentFunc = di.inject(function (secondDepency, firstDependency) {
	    firstDependency();
	    secondDepency();
	});

	myDependentFunc();
Copy after login


Let’s first observe the anonymous function passed in inject. It represents the demand and is where we need to inject.

Let’s take a look at its formal parameters first.

secondDepency, firstDependency
Copy after login

There are two parameters here, which represent two requirements. When the time comes, we will analyze these two parameters and find related modules.

Okay, back to the issue of writing the inject function, what should we do in the first step?

First get the toString() form of the function passed in by inject:


	
	//第一步
	DI.prototype.inject = function (func) {
		func.toString();
	};
Copy after login


Then, analyze the string, Find all formal parameters:


	
	//第二步
	DI.prototype.inject = function (func) {
		var args = findArgs(func.toString());
	};
Copy after login

How to write the findArgs method? You can use regular expressions or string segmentation and interception. I use the latter here.


String.prototype.trim=function(){
  return this.replace(/(^\s*)|(\s*$)/g, "");
};

var findArgs = function(funcStr){
    var bracket1 = funcStr.indexOf("(");
    var bracket2 = funcStr.indexOf(")");
    var argsStr = funcStr.slice(bracket1+1,bracket2);
    var args = argsStr.split(",");
    return args.map(function(e){
        return e.trim();
    });
};
Copy after login

After finding all the formal parameters, the third step is to find the corresponding module function from the module hash table and store it in the actual parameter list.

realArgs refers to actual parameter list:


	
	//第三步
	DI.prototype.inject = function (func) {
		var args = findArgs(func.toString());
		var realArgs = [];
		for(var i=0;i<args.length;i++){
			var dep = this.dependency[args[i]];
			if(dep){
				realArgs.push(dep);
			}
		}
		//......
	};
Copy after login


The last step isInjection, inject returns an anonymous function. When the anonymous function is executed, the actual parameter list is obtained through the closure and injected into func.


DI.prototype.inject = function (func) {
    var args = findArgs(func.toString());
    var realArgs = [];
    for(var i=0;i<args.length;i++){
        var dep = this.dependency[args[i]];
        if(dep){
            realArgs.push(dep);
        }
    }
    return function(){
        return func.apply(null,realArgs);
    };
}
Copy after login

In this way, a simple version of the injection function is completed.
The above is an interesting question about JavaScript: dependency injection. For more related content, please pay attention to the PHP Chinese website (www.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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use dependency injection (Dependency Injection) in the Phalcon framework How to use dependency injection (Dependency Injection) in the Phalcon framework Jul 30, 2023 pm 09:03 PM

Introduction to the method of using dependency injection (DependencyInjection) in the Phalcon framework: In modern software development, dependency injection (DependencyInjection) is a common design pattern aimed at improving the maintainability and testability of the code. As a fast and low-cost PHP framework, the Phalcon framework also supports the use of dependency injection to manage and organize application dependencies. This article will introduce you how to use the Phalcon framework

A step-by-step guide to understanding dependency injection in Angular A step-by-step guide to understanding dependency injection in Angular Dec 02, 2022 pm 09:14 PM

This article will take you through dependency injection, introduce the problems that dependency injection solves and its native writing method, and talk about Angular's dependency injection framework. I hope it will be helpful to you!

Dependency injection using JUnit unit testing framework Dependency injection using JUnit unit testing framework Apr 19, 2024 am 08:42 AM

For testing dependency injection using JUnit, the summary is as follows: Use mock objects to create dependencies: @Mock annotation can create mock objects of dependencies. Set test data: The @Before method runs before each test method and is used to set test data. Configure mock behavior: The Mockito.when() method configures the expected behavior of the mock object. Verify results: assertEquals() asserts to check whether the actual results match the expected values. Practical application: You can use a dependency injection framework (such as Spring Framework) to inject dependencies, and verify the correctness of the injection and the normal operation of the code through JUnit unit testing.

Dependency injection pattern in Golang function parameter passing Dependency injection pattern in Golang function parameter passing Apr 14, 2024 am 10:15 AM

In Go, the dependency injection (DI) mode is implemented through function parameter passing, including value passing and pointer passing. In the DI pattern, dependencies are usually passed as pointers to improve decoupling, reduce lock contention, and support testability. By using pointers, the function is decoupled from the concrete implementation because it only depends on the interface type. Pointer passing also reduces the overhead of passing large objects, thereby reducing lock contention. Additionally, DI pattern makes it easy to write unit tests for functions using DI pattern since dependencies can be easily mocked.

Dependency injection and service container for PHP functions Dependency injection and service container for PHP functions Apr 27, 2024 pm 01:39 PM

Answer: Dependency injection and service containers in PHP help to flexibly manage dependencies and improve code testability. Dependency injection: Pass dependencies through the container to avoid direct creation within the function, improving flexibility. Service container: stores dependency instances for easy access in the program, further enhancing loose coupling. Practical case: The sample application demonstrates the practical application of dependency injection and service containers, injecting dependencies into the controller, reflecting the advantages of loose coupling.

How to use dependency injection for unit testing in Golang? How to use dependency injection for unit testing in Golang? Jun 02, 2024 pm 08:41 PM

Using dependency injection (DI) in Golang unit testing can isolate the code to be tested, simplifying test setup and maintenance. Popular DI libraries include wire and go-inject, which can generate dependency stubs or mocks for testing. The steps of DI testing include setting dependencies, setting up test cases and asserting results. An example of using DI to test an HTTP request handling function shows how easy it is to isolate and test code without actual dependencies or communication.

Go Language: Dependency Injection Guide Go Language: Dependency Injection Guide Apr 07, 2024 pm 12:33 PM

Answer: In Go language, dependency injection can be implemented through interfaces and structures. Define an interface that describes the behavior of dependencies. Create a structure that implements this interface. Inject dependencies through interfaces as parameters in functions. Allows easy replacement of dependencies in testing or different scenarios.

Go language dependency injection best practices Go language dependency injection best practices Apr 07, 2024 pm 03:42 PM

Best practices for implementing dependency injection in Go include: Loose coupling: Loosely coupling an object with its dependencies, improving testability and maintainability. Testability: Improve test credibility by mocking dependencies for unit testing. Scalability: Improve the scalability of your code by easily changing or adding dependencies. Use third-party libraries such as wire to implement DI, define interfaces and create dependencies using wire.NewSet.

See all articles