简体   繁体   中英

Accessing javascript object property within nested function

Good day,

I have created an object that will manage data access. My app will be using a couple different datastores, so I have created a simple factory to switch between providers:

var dataProvider = {
company: {
    getAllCompanies: function (callback) {
        var impl = factory.createProvider(implInstance.current)
        impl.company.getAllCompanies(callback);
    }
}
projects: {
    getAllProjects: function (callback) {
        var impl = factory.createProvider(implInstance.current)
        impl.projects.getAllProjects(callback);
    }
}
}

That is all well and good, but I'd rather have my impl variable at the dataProvider level. I'm unsure how I would properly access it though, as 'this' doesn't provide me the right scope when I'm nested so deeply. I'd like something like the following:

var dataProvider = {
impl: function () { return factory.createProvider(implInstance.current) },
company: {
    getAllCompanies: function (callback) {
        //THIS WON'T WORK
        this.impl.company.getAllCompanies(callback);
    }
}

Thanks!

You'd want to use the module design pattern for this:

var dataProvider = (function () {
    var getImpl = function () {
        return factory.createProvider(implInstance.current);
    };
    return {
        company: {
            getAllCompanies: function (callback) {
                getImpl().company.getAllCompanies(callback);
            }
        },
        projects: {
            getAllProjects: function (callback) {
                getImpl().projects.getAllProjects(callback);
            }
        }
    }
})();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM