How can I make a program wait for a variable change in javascript?

前端 未结 10 1698
耶瑟儿~
耶瑟儿~ 2020-12-01 03:23

I want to force a JavaScript program to wait in some particular points of its execution until a variable has changed. Is there a way to do it? I have already found an extens

相关标签:
10条回答
  • 2020-12-01 03:48

    You can use properties:

    Object.defineProperty MDN documentation

    Example:

    function def(varName, onChange) {
        var _value;
    
        Object.defineProperty(this, varName, {
            get: function() {
                return _value;
            },
            set: function(value) {
                if (onChange)
                    onChange(_value, value);
                _value = value;
            }
        });
    
        return this[varName];
    }
    
    def('myVar', function (oldValue, newValue) {
        alert('Old value: ' + oldValue + '\nNew value: ' + newValue);
    });
    
    myVar = 1; // alert: Old value: undefined | New value: 1
    myVar = 2; // alert: Old value: 1 | New value: 2
    
    0 讨论(0)
  • 2020-12-01 03:49

    JavaScript interpreters are single threaded, so a variable can never change, when the code is waiting in some other code that does not change the variable.

    In my opinion it would be the best solution to wrap the variable in some kind of object that has a getter and setter function. You can then register a callback function in the object that is called when the setter function of the object is called. You can then use the getter function in the callback to retrieve the current value:

    function Wrapper(callback) {
        var value;
        this.set = function(v) {
            value = v;
            callback(this);
        }
        this.get = function() {
            return value;
        }  
    }
    

    This could be easily used like this:

    <html>
    <head>
    <script type="text/javascript" src="wrapper.js"></script>
    <script type="text/javascript">
    function callback(wrapper) {
        alert("Value is now: " + wrapper.get());
    }
    
    wrapper = new Wrapper(callback);
    </script>
    </head>
    <body>
        <input type="text" onchange="wrapper.set(this.value)"/>
    </body>
    </html>
    
    0 讨论(0)
  • 2020-12-01 03:51

    Edit 2018: Please look into Object getters and setters and Proxies. Old answer below:


    a quick and easy solution goes like this:

    var something=999;
    var something_cachedValue=something;
    
    function doStuff() {
        if(something===something_cachedValue) {//we want it to match
            setTimeout(doStuff, 50);//wait 50 millisecnds then recheck
            return;
        }
        something_cachedValue=something;
        //real action
    }
    
    doStuff();
    
    0 讨论(0)
  • 2020-12-01 03:56

    The question was posted long time ago, many answers pool the target periodically and produces unnecessary waste of resources if the target is unchanged. In addition, most answers do not block the program while waiting for changes as required by the original post.

    We can now apply a solution that is purely event-driven.

    The solution uses onClick event to deliver event triggered by value change.

    The solution can be run on modern browsers that support Promise and async/await. If you are using Node.js, consider EventEmitter as a better solution.

    <!-- This div is the trick.  -->
    <div id="trick" onclick="onTrickClick()" />
    
    <!-- Someone else change the value you monitored. In this case, the person will click this button. -->
    <button onclick="changeValue()">Change value</button>
    
    <script>
    
        // targetObj.x is the value you want to monitor.
        const targetObj = {
            _x: 0,
            get x() {
                return this._x;
            },
            set x(value) {
                this._x = value;
                // The following line tells your code targetObj.x has been changed.
                document.getElementById('trick').click();
            }
        };
    
        // Someone else click the button above and change targetObj.x.
        function changeValue() {
            targetObj.x = targetObj.x + 1;
        }
    
        // This is called by the trick div. We fill the details later.
        let onTrickClick = function () { };
    
        // Use Promise to help you "wait". This function is called in your code.
        function waitForChange() {
            return new Promise(resolve => {
                onTrickClick = function () {
                    resolve();
                }
            });
        }
    
        // Your main code (must be in an async function).
        (async () => {
            while (true) { // The loop is not for pooling. It receives the change event passively.
                await waitForChange(); // Wait until targetObj.x has been changed.
                alert(targetObj.x); // Show the dialog only when targetObj.x is changed.
                await new Promise(resolve => setTimeout(resolve, 0)); // Making the dialog to show properly. You will not need this line in your code.
            }
        })();
    
    </script>

    0 讨论(0)
  • 2020-12-01 04:00

    I would recommend a wrapper that will handle value being changed. For example you can have JavaScript function, like this:

    ​function Variable(initVal, onChange)
    {
        this.val = initVal;          //Value to be stored in this object
        this.onChange = onChange;    //OnChange handler
    
        //This method returns stored value
        this.GetValue = function()  
        {
            return this.val;
        }
    
        //This method changes the value and calls the given handler       
        this.SetValue = function(value)
        {
            this.val = value;
            this.onChange();
        }
    
    
    }
    

    And then you can make an object out of it that will hold value that you want to monitor, and also a function that will be called when the value gets changed. For example, if you want to be alerted when the value changes, and initial value is 10, you would write code like this:

    var myVar = new Variable(10, function(){alert("Value changed!");});
    

    Handler function(){alert("Value changed!");} will be called (if you look at the code) when SetValue() is called.

    You can get value like so:

    alert(myVar.GetValue());
    

    You can set value like so:

    myVar.SetValue(12);
    

    And immediately after, an alert will be shown on the screen. See how it works: http://jsfiddle.net/cDJsB/

    0 讨论(0)
  • 2020-12-01 04:01

    Super dated, but certainly good ways to accomodate this. Just wrote this up for a project and figured I'd share. Similar to some of the others, varied in style.

    var ObjectListener = function(prop, value) {
    
      if (value === undefined) value = null;
    
      var obj = {};    
      obj.internal = value;
      obj.watcher = (function(x) {});
      obj.emit = function(fn) {
        obj.watch = fn;
      };
    
      var setter = {};
      setter.enumerable = true;
      setter.configurable = true;
      setter.set = function(x) {
        obj.internal = x;
        obj.watcher(x);
      };
    
      var getter = {};
      getter.enumerable = true;
      getter.configurable = true;
      getter.get = function() {
        return obj.internal;
      };
    
      return (obj,
        Object.defineProperty(obj, prop, setter),
        Object.defineProperty(obj, prop, getter),
        obj.emit, obj);
    
    };
    
    
    user._licenseXYZ = ObjectListener(testProp);
    user._licenseXYZ.emit(testLog);
    
    function testLog() {
      return function() {
        return console.log([
            'user._licenseXYZ.testProp was updated to ', value
        ].join('');
      };
    }
    
    
    user._licenseXYZ.testProp = 123;
    
    0 讨论(0)
提交回复
热议问题