service.js 277 B

12345678910
  1. define(function () {
  2. return {
  3. load: function (name, req, onload, config) {
  4. var url = abp.appPath + 'api/AbpServiceProxies/Get?name=' + name;
  5. req([url], function (value) {
  6. onload(value);
  7. });
  8. }
  9. };
  10. });