What can JavaScript do? JavaScript can perform data verification and processing on the client, data interaction with the server (AJAX), interface functions enhancement, beautification, etc. It seems that JavaScript can only perform page or script-related processing. is that so?
If we break out of our current fixed perspective on JavaScript applications, we will only look at the essence of JavaScript. There may be new and sudden enlightenment.
Maybe we can redefine the JavaScript language like this - it is an object-oriented programming language with ECMAScript as the syntax specification.
Of course, JavaScript itself has two unique objects - BOM and DOM objects. Using these two objects we can complete a series of processing.
We know that C#, which is also an object-oriented language, does not contain a class library, which does the work through a general execution engine and a rich class library provided by Visual Studio. Without the class library, C# may not have any use value.
If JavaScript also has a rich class library similar to C#, what can JavaScript do? ——Port communication, hardware management, stronger multimedia control, and more free resource calls. Maybe this is what many JavaScript programmers dream of, but can this be achieved?
I want to say yes! How to achieve it? To implement these functions, there must be an execution engine like the C# call class library. Fortunately, many programs can be regarded as such engines themselves. A feasible way is to use C# to complete the work handler, and JavaScript tells C# when and how it works, just as C# itself defines. And fortunately, letting JavaScript tell C# how to work can solve the problem by the ability to interact with JavaScript provided by C# (Note: see address: /post/). This is what we say about using the language itself as an execution engine. Many languages provide this capability such as Flash (see: /post/), etc.
Perhaps from a higher perspective, this approach is just an interactive application, but with this application, our creativity may have a pair of free-flying wings. JavaScript can do a lot!
If we break out of our current fixed perspective on JavaScript applications, we will only look at the essence of JavaScript. There may be new and sudden enlightenment.
Maybe we can redefine the JavaScript language like this - it is an object-oriented programming language with ECMAScript as the syntax specification.
Of course, JavaScript itself has two unique objects - BOM and DOM objects. Using these two objects we can complete a series of processing.
We know that C#, which is also an object-oriented language, does not contain a class library, which does the work through a general execution engine and a rich class library provided by Visual Studio. Without the class library, C# may not have any use value.
If JavaScript also has a rich class library similar to C#, what can JavaScript do? ——Port communication, hardware management, stronger multimedia control, and more free resource calls. Maybe this is what many JavaScript programmers dream of, but can this be achieved?
I want to say yes! How to achieve it? To implement these functions, there must be an execution engine like the C# call class library. Fortunately, many programs can be regarded as such engines themselves. A feasible way is to use C# to complete the work handler, and JavaScript tells C# when and how it works, just as C# itself defines. And fortunately, letting JavaScript tell C# how to work can solve the problem by the ability to interact with JavaScript provided by C# (Note: see address: /post/). This is what we say about using the language itself as an execution engine. Many languages provide this capability such as Flash (see: /post/), etc.
Perhaps from a higher perspective, this approach is just an interactive application, but with this application, our creativity may have a pair of free-flying wings. JavaScript can do a lot!