# Mock.js 的安装与使用
下列对于 Mock 使用描述错误得是?
## 答案
```php
Mock.mock( rtype, template )
```
记录数据模板。当拦截到匹配 rtype 的 Ajax 请求类型时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。
## 选项
### A
```php
Mock.mock( rurl, template )
```
记录数据模板。当拦截到匹配 rurl 的 Ajax 请求时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。
### B
```php
Mock.mock( rurl, rtype, function( options ) )
```
记录用于生成响应数据的函数。当拦截到匹配 rurl 和 rtype 的 Ajax 请求时,函数 function(options) 将被执行,并把执行结果作为响应数据返回。
### C
```php
Mock.mock( rurl, rtype, template )
```
记录数据模板。当拦截到匹配 rurl 和 rtype 的 Ajax 请求时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。