A way to encapsulte ( add privacy ) to models in the MVC?

前端 未结 2 1132
盖世英雄少女心
盖世英雄少女心 2021-01-20 02:54

I namespace my models and a single controller like this:

var MC = {};

and then added properties as needed.

For example, the code th

2条回答
  •  春和景丽
    2021-01-20 03:30

    you can do this with closures.

    var MyNamespace = {};
    MyNamespace.MyClass = (function() {
        function privateMethod() {
            // ...
        }
    
        function publicMethod() {
            // can call privateMethod() from in here
        }
    
        return ({
            publicMethod: publicMethod
        });
    }());
    

    This will create an object called MyNamespace.MyClass with one private method and one public method. In your case you probably want to do this for each model class. Have their init methods be public and hide their other methods.

提交回复
热议问题