0
我有這樣的片段:從內部調用方法?
myApp.factory('productsStore', function ($http, $q, Product) {
var products = "";
products = productsStore.get();
return {
get: function() {
return Product.query({});
}
};
});
我如何可以調用get()
方法,從同一個「工廠」內? products = productsStore.get()
顯然不起作用。
申報'函數的get(){}','然後返回{得到:得到}' – elclanrs
歡迎計算器(你會明白我的意思很快就足夠了) –
@elclanrs:讓它成爲答案! –