Implementing command mode with JavaScript

Source: Internet
Author: User
Command|javascript

The realization is simply too simple ... A dynamic language is a good thing.
First define a command object with the following code:

function Command (obj) {
var commandobj = obj; Save the reference of working object
var oldprop = new Object (); Save Old properties

Set new properties and save old properties
This. do = function () {
for (Var o in this) {
Oldprop[o] = Commandobj[o];
Commandobj[o] = This[o];
}
}

Restore Old Properties
This. Undo = function () {
for (Var o in Oldprop) {
Commandobj[o] = Oldprop[o];
}

Delete Oldprop;
Oldprop = new Object ();
}
}

If you want to invoke it, you can write it:

"MC" is a object that has _alpha and _x attributes

var com = new Command (MC);
Com._alpha = 20;
com._x = 200;
Com. Do ();
Do something ...
Remember to save this Command somewhere ...

Now, undo it!
Com. Undo ();


Marvel at the simplicity and harmony of this!



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.