Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
升级插件文档
  • Loading branch information
Bosn committed Jan 23, 2014
1 parent c4232f9 commit 60ba5c9
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,22 @@ Rigel Automation Platform
RAP MOCK插件使用方法
--------------------------------------

RAP提供MOCK服务插件(暂时仅支持Kissy和jQuery),使用方法如下。
RAP提供MOCK服务插件(暂时仅支持Kissy和jQuery),使用方法只需要一步:

### 1. 在kissy, jQuery后面引入rap plugin ###
### 在kissy, jQuery后面引入rap plugin ###

```bash
<script type="text/javascript" src="rap.plugin.js?projectId={{projectId}}&mode={{mode}}"></script>
<script type="text/javascript" src="http://rap.alibaba-inc.com/rap.plugin.js?id={{id}}&mode={{mode}}"></script>
```

其中`{{projectId}}`为RAP提供的项目ID, `{{mode}}`为RAP路由的工作模式, 默认值为1
mode值及含义:
其中`{{id}}`为RAP提供的项目ID, `{{mode}}`为RAP路由的工作模式, 默认值为3,白名单会根据RAP中的文档自动配置,对RAP中未录入的接口不会做拦截
mode不同值具体含义:
- 0 - 不拦截
- 1 - 拦截全部
- 2 - 黑名单中的项不拦截
- 3 - 仅拦截白名单中的项

### 2. 引入mock.js ###

```bash
<script src="http://mockjs.com/dist/mock-min.js"></script>
```

### 3. 设置黑名单、白名单(可选) ###
### 您也可以手动设置黑名单、白名单及查看、设置工作模式 ###

设置黑名单

Expand All @@ -51,4 +45,16 @@ RAP.setWhiteList(arr);

其中arr可以包含匹配字符串,或正则对象,例:['test', /test/g]

查看当前模式

```bash
RAP.getMode();
```

设置当前模式

```bash
RAP.setMode(1);
```


0 comments on commit 60ba5c9

Please sign in to comment.