Browse Source

markdown更新

yangxiao 3 years ago
parent
commit
776eb3d480
1 changed files with 22 additions and 0 deletions
  1. 22 0
      README.md

+ 22 - 0
README.md

@@ -1,5 +1,27 @@
 # 公共内容API
 ### API
+###### requestData(options)
+通用数据请求。
+>options: 请求配置项  
+
+使用方式:
+```javascript
+this.API.requestData({
+  isMust: true, // 请求是否携带 token ,默认为 true ,可缺省
+  showLoading: false, // 请求是否显示加载中遮罩层,默认 false ,可缺省
+  method: "GET", // 请求方式,默认为 GET ,可缺省
+  subUrl: "api/repassword", // 请求接口地址,必传项
+  timeout: 3000, // 请求超时时间,默认 3s ,可缺省
+  data: { name: "admin", pasword: "123456" }, // 请求所携带参数,默认为空,可缺省
+  success (res) {
+    // 请求成功的回调
+  },
+  fail (error) {
+    // 请求失败的回调
+  }
+});
+```
+
 ###### get(url, params = {})
 get请求。
 >url: 接口地址