0
我有一些廠:調用父方法
app.factory('myFactory', function() {
return {
property1: "str",
property2: "str",
property3: "str",
func: function() {/*....*/},
childObj:{
prop1: "str",
prop2: "str",
childFunc: function() {
//....;
func();
}
}
}
})
我能叫孩子方法內部父工廠方法?
謝謝U,我會做像你說的) – RoGGeR