1.0.0-RC • Published 5 years ago

@gsafety/odata-client v1.0.0-RC

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

odata-client

这个是odata客户端公共组件

License

MIT

install

 npm install @gsafety/odata-client

Example

see example

Usage

import OData from '@gsafety/odata-client/dist';
let q = OData({service: 'https://example.com', resources: 'Customers'});
q.top(5).skip(10).filter('Balance gt 5000').and('CreditLimit', '<', 10000).get()
.then(function(response) {
  ...
});