You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If needed, constructor parameters can be specified for a dependency provider. These parameters will be passed into the constructor of the target object when it is created. Constructor parameters can be configured in the following way:
Deft.Injector.configure({contactStore: {className: 'MyApp.store.ContactStore',// Specify an array of params to pass into ContactStore constructorparameters: [{proxy: {type: 'ajax',url: '/contacts.json',reader: {type: 'json',root: 'contacts'}}}]}});