标签:
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 } }
标签:
原文地址:http://www.cnblogs.com/jzm17173/p/4930037.html