当前位置: 首页 > 软件库 > Web应用开发 > Web框架 >

rjax

base on rxjs awesome ajax library
授权协议 MIT License
开发语言 JavaScript
所属分类 Web应用开发、 Web框架
软件类型 开源软件
地区 不详
投 递 者 诸葛苏燕
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

rjax

English | 简体中文

Features

  • Porting the excellent @angular/common/http module.
  • Responsive ajax library based on rxjs.
  • Written in TypeScript with predictable static types.
  • Powerful and easy to use.

�� Install

yarn add rjax # or: npm install rjax --save

�� Usage

import { Rjax } from 'rjax';
const rjax = new Rjax();
rjax.get(`/user/12345`).subscribe(response => {
    // Succeed Callback
    console.log(response);
}, error => {
    // Error Callback
    console.log(error);
});

Docs

API document and example link

Author

rjax © ppjjzz, Released under the MIT License.
Authored and maintained by ppjjzz.

相关阅读

相关文章

相关问答

相关文档