diff --git "a/data/2.Vue\344\270\255\351\230\266/7.Mock/4.Mock.js \347\232\204\345\256\211\350\243\205\344\270\216\344\275\277\347\224\250/exercises.md" "b/data/2.Vue\344\270\255\351\230\266/7.Mock/4.Mock.js \347\232\204\345\256\211\350\243\205\344\270\216\344\275\277\347\224\250/exercises.md" index b66100fa685f8b814b378dfb30057d02ef52c7ab..5b3222d458119d1b47a6d3d7e6207eb7780e519a 100644 --- "a/data/2.Vue\344\270\255\351\230\266/7.Mock/4.Mock.js \347\232\204\345\256\211\350\243\205\344\270\216\344\275\277\347\224\250/exercises.md" +++ "b/data/2.Vue\344\270\255\351\230\266/7.Mock/4.Mock.js \347\232\204\345\256\211\350\243\205\344\270\216\344\275\277\347\224\250/exercises.md" @@ -178,11 +178,14 @@ export default { 根据上方小常识,判断下面描述错误得是?

## 答案 + + ```php -Mock.mock( rurl, rtype, template ) +Mock.mock( rtype, template ) ``` -记录数据模板。当拦截到匹配 rurl 和 rtype 的 Ajax 请求时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。 +记录数据模板。当拦截到匹配 rtype 的 Ajax 请求类型时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。 + ## 选项 @@ -206,10 +209,10 @@ Mock.mock( rurl, rtype, function( options ) ) ### C ```php -Mock.mock( rtype, template ) +Mock.mock( rurl, rtype, template ) ``` -记录数据模板。当拦截到匹配 rtype 的 Ajax 请求类型时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。 +记录数据模板。当拦截到匹配 rurl 和 rtype 的 Ajax 请求时,将根据数据模板 template 生成模拟数据,并作为响应数据返回。