1.4.8 • Published 2 months ago

mb-bridge v1.4.8

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

mb-bridge Web跟 Native 通信协议仓库

通信协议

// 请求的数据格式
class Request {
    id: number;
    service: string;
    method: string;
    params: Record<string, any> ;
  
    constructor(id: number, service: string, method: string, params: any) {
      this.service = service;
      this.id = id;
      this.method = method;
      this.params = params;
    }
 }
  
// 返回的数据格式
class JsonResponse{
      type: "response"|"event",
      data: Respose|NativeEvent
 }
  
  
//  回复的数据格式
class Response {
  id: number;
  service: string;
  method: string;
  data: any;
  message:string;
}

//  主动事件的数据格式 
interface NativeEvent {
  service: string;
  eventName: string;
  data: any;
  method: string;
}

通信方式

  1. 新建class,继承MBService

  2. 实现MBService 的 processEvent() 方法(processEvent 主要处理关联的主动事件,如果没有主动事件,可以空实现)

  3. 通过request() 方法,给Native 传递数据

1.4.8

2 months ago

1.4.6

2 months ago

1.4.5

2 months ago

1.4.7

2 months ago

1.4.4

2 months ago

1.4.3

2 months ago

1.4.2

2 months ago

1.4.1

2 months ago

1.4.0

2 months ago

1.3.8

2 months ago

1.3.7

2 months ago

1.3.6

2 months ago

1.3.5

2 months ago

1.3.4

2 months ago

1.3.3

2 months ago

1.3.2

2 months ago

1.3.1

2 months ago

1.3.0

2 months ago

1.2.1

2 months ago

1.1.1

3 months ago

1.1.0

3 months ago

1.0.37

3 months ago

1.0.35

3 months ago

1.0.34

3 months ago

1.0.33

3 months ago

1.0.32

3 months ago

1.0.29

3 months ago

1.0.28

3 months ago

1.0.27

3 months ago

1.0.31

3 months ago

1.0.30

3 months ago

1.0.25

4 months ago

1.0.24

5 months ago

1.0.23

5 months ago

1.0.19

5 months ago

1.0.22

5 months ago

1.0.21

5 months ago

1.0.20

5 months ago

1.0.18

5 months ago

1.0.16

5 months ago

1.0.15

5 months ago

1.0.14

5 months ago

1.0.13

5 months ago

1.0.9

5 months ago

1.0.8

5 months ago

1.0.7

5 months ago

1.0.6

5 months ago

1.0.5

5 months ago

1.0.4

5 months ago

1.0.11

5 months ago

1.0.10

5 months ago

1.0.12

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago