GitHub 博客园 Nanakon

service

Angular.js Services

app.service("foo", function() {
    var thisIsPrivate = "Private"
    this.variable = "This is public"
    this.getPrivate = function() {
        return thisIsPrivate
    }
})


app.factory("foo2", function() {
    return new Foobar()
})

function Foobar() {
    var thisIsPrivate = "Private"
    this.variable = "This is public"
    this.getPrivate = function() {
        return thisIsPrivate
    }
}

 

posted on 2015-11-02 14:17  jzm17173  阅读(92)  评论(0编辑  收藏  举报

导航

轻音