sourcery - 构建JavaScript的RESTful API客户端
Sourcery是一个框架,用于构建RESTful API 客户端。它的思想源于ActiveResource 并行为几乎相同的方式。它的速度极快,非常简单易用。
var Resource = require('sourcery'); var Base = Resource.extend({ host: 'http://example.com/api/v1', // base host ext: 'json', // optional, will include `.json` in the URLs root: true, // optional, will include root element }); var Project = Base.extend({ path: '/projects', // http://example.com/api/v1/projects name: 'Project', // optional, this is the name for the root element });
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!