request.uvue 11.6 KB
Newer Older
1
<template>
2 3
  <view style="flex: 1;">
    <view class="uni-padding-wrap uni-common-mt">
4
      <view class="uni-common-mt" style="border-width: 2px;border-style: solid; border-radius: 4px;">
5
        <textarea :value="res" class="uni-textarea" style="width: 100%;"></textarea>
6 7 8 9 10 11 12 13 14
      </view>
      <view>
        <text>地址 : {{ host + url}}</text>
        <text>请求方式 : {{method}}</text>
      </view>
      <view class="uni-btn-v uni-common-mt">
        <button type="primary" @click="sendRequest">发起请求</button>
      </view>
    </view>
雪洛's avatar
雪洛 已提交
15
    <scroll-view style="flex: 1;" show-scrollbar="true">
16
      <view style="padding: 20px;">
17 18 19
        <text>设置请求方式</text>
        <view class="uni-common-pb"></view>
        <view style="flex-direction: row;flex-wrap: wrap;">
20
          <button style="padding: 5px; margin-right: 10px;" type="primary" size="mini"
21
            @click="changeMethod('GET')">GET</button>
22
          <button style="padding: 5px; margin-right: 10px; " type="primary" size="mini"
23
            @click="changeMethod('POST')">POST</button>
24
          <button style="padding: 5px; margin-right: 10px; " type="primary" size="mini"
25
            @click="changeMethod('PUT')">PUT</button>
26
          <button style="padding: 5px; margin-right: 10px;" type="primary" size="mini"
27
            @click="changeMethod('DELETE')">DELETE</button>
28
          <button style="padding: 5px; margin-right: 10px; " type="primary" size="mini"
29
            @click="changeMethod('PATCH')">PATCH</button>
30
          <button style="padding: 5px;margin-right: 10px;" type="primary" size="mini"
31
            @click="changeMethod('OPTIONS')">OPTIONS</button>
32
          <button style="padding: 5px;" type="primary" size="mini" @click="changeMethod('HEAD')">HEAD</button>
33 34
        </view>
      </view>
35
      <view style="padding: 20px;">
36 37 38
        <text>请求返回错误码的接口(默认为GET)</text>
        <view class="uni-common-pb"></view>
        <view style="flex-direction: row;flex-wrap: wrap;">
39
          <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in errorCodeUrls" :key="index"
40 41 42
            @click="changeUrl(item)">{{item}}</button>
        </view>
      </view>
43
      <view style="padding: 20px;">
44 45 46
        <text>请求不同header的接口(默认为GET)</text>
        <view class="uni-common-pb"></view>
        <view style="flex-direction: row;flex-wrap: wrap;">
47
          <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in headerUrls" :key="index"
48 49 50
            @click="changeUrl(item)">{{item}}</button>
        </view>
      </view>
51
      <view style="padding: 20px;">
52 53 54
        <text>请求不同content-type的接口(默认为GET)</text>
        <view class="uni-common-pb"></view>
        <view style="flex-direction: row;flex-wrap: wrap;">
H
hdx 已提交
55 56
          <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in contentTypeUrls" :key="index"
            @click="changeUrl(item)">{{item}}</button>
57 58
        </view>
      </view>
59

60
      <view style="padding: 20px;">
61 62 63
        <text>POST请求(有body)</text>
        <view class="uni-common-pb"></view>
        <view style="flex-direction: row;flex-wrap: wrap;">
64
          <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in postUrls" :key="index"
65 66 67 68 69
            @click="changeUrlFromPost(item)">{{item}}</button>
        </view>
      </view>
    </scroll-view>
  </view>
70
</template>
71 72 73 74 75
<script>
  class GETDataType {
    data: UTSJSONObject | null = null
  }

76 77 78 79 80 81 82 83 84 85
  const duration = 2000
  const methodMap = {
    "GET": "/api/http/method/get",
    "POST": "/api/http/method/post",
    "PUT": "/api/http/method/put",
    "DELETE": "/api/http/method/delete",
    "PATCH": "/api/http/method/patch",
    "OPTIONS": "/api/http/method/options",
    "HEAD": "/api/http/method/head"
  }
86 87


88 89 90 91 92 93
  export default {
    data() {
      return {
        title: 'request',
        res: '',
        task: null as RequestTask | null,
雪洛's avatar
雪洛 已提交
94
        host: "https://request.dcloud.net.cn",
95
        url: "/api/http/method/get",
96
        method: "GET" as RequestMethod | null,
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
        data: null as any | null,
        header: null as UTSJSONObject | null,
        errorCodeUrls: [
          "/api/http/statusCode/200",
          "/api/http/statusCode/204",
          "/api/http/statusCode/301",
          "/api/http/statusCode/302",
          "/api/http/statusCode/307",
          "/api/http/statusCode/400",
          "/api/http/statusCode/401",
          "/api/http/statusCode/403",
          "/api/http/statusCode/404",
          "/api/http/statusCode/405",
          "/api/http/statusCode/500",
          "/api/http/statusCode/502",
          "/api/http/statusCode/503",
          "/api/http/statusCode/504",
        ],
        headerUrls: [
          "/api/http/header/ua",
          "/api/http/header/referer",
          "/api/http/header/requestCookie",
          "/api/http/header/setCookie",
          "/api/http/header/deleteCookie"
        ],
        contentTypeUrls: [
          "/api/http/contentType/text/plain",
          "/api/http/contentType/text/html",
          "/api/http/contentType/text/xml",
          "/api/http/contentType/image/gif",
          "/api/http/contentType/image/jpeg",
          "/api/http/contentType/image/png",
          "/api/http/contentType/application/json",
          "/api/http/contentType/application/octetStream",
        ],
        postUrls: [
          "/api/http/contentType/json",
          "/api/http/contentType/xWwwFormUrlencoded",
        ],
        //自动化测试例专用
        jest_result: false
      }
    },
    onLoad() {
    },
    onUnload() {
      uni.hideLoading();
      this.task?.abort();
    },
    methods: {
147
      changeMethod(e : RequestMethod) {
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
        this.method = e;
        this.url = methodMap[e] as string;
        this.data = null;
        this.header = null;
      },
      changeUrl(e : string) {
        this.method = "GET";
        this.url = e;
        this.data = null;
        this.header = null;
      },
      changeUrlFromPost(e : string) {
        this.method = "POST";
        this.url = e;
        switch (e) {
          case "/api/http/contentType/json":
            this.header = {
              "Content-Type": "application/json"
            };
            this.data = {
              "hello": "world"
            };
            break;
          case "/api/http/contentType/xWwwFormUrlencoded":
            this.header = {
              "Content-Type": "application/x-www-form-urlencoded"
            };
            this.data = "hello=world";
            break;
        }
      },
      sendRequest() {
        uni.showLoading({
          title: "请求中..."
        })
        this.task = uni.request({
          url: this.host + this.url,
          // dataType: "json",
          // responseType: "json",
          method: this.method,
          data: this.data,
          header: this.header,
          timeout: 6000,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
194
          success: (res) => {
H
hdx 已提交
195
            console.log('request success', JSON.stringify(res.data))
196
            console.log('request success header is :', JSON.stringify(res.header))
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
197 198 199 200 201 202 203
            uni.showToast({
              title: '请求成功',
              icon: 'success',
              mask: true,
              duration: duration
            });
            this.res = '请求结果 : ' + JSON.stringify(res);
204
          },
205
          fail: (err) => {
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
206 207 208 209 210
            console.log('request fail', err);
            uni.showModal({
              content: err.errMsg,
              showCancel: false
            });
211
          },
212
          complete: () => {
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
            uni.hideLoading()
          },
        });
      },
      //自动化测试例专用
      jest_request() {
        uni.request({
          url: this.host + this.url,
          // dataType: "json",
          // responseType: "json",
          method: this.method,
          data: this.data,
          header: this.header,
          timeout: 6000,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
230
          success: () => {
231 232
            this.jest_result = true;
          },
233
          fail: () => {
234 235 236
            this.jest_result = false;
          },
        });
H
hdx 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
      },
      jest_set_cookie() {
        uni.request({
          url: this.host + "/api/http/header/setCookie",
          method: "GET",
          timeout: 6000,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
          success: () => {
            this.jest_cookie_request(true)
          },
          fail: () => {
            this.jest_result = false;
          },
        });
      },
      jest_delete_cookie() {
        uni.request({
          url: this.host + "/api/http/header/deleteCookie",
          method: "GET",
          timeout: 6000,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
          success: () => {
            this.jest_cookie_request(false)
          },
          fail: () => {
            this.jest_result = false;
          },
        });
      },
      jest_cookie_request(needCookie : boolean) {
        uni.request({
          url: this.host + "/api/http/header/requestCookie",
          method: "GET",
          timeout: 6000,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
          success: (res) => {
            const requestCookie = (res.data as UTSJSONObject).getJSON("data")?.getAny("requestCookie")
            console.log("requestCookie ", requestCookie);
            if (requestCookie instanceof Array) {
              this.jest_result = needCookie ? requestCookie.length > 0 : requestCookie.length == 0
            } else {
              this.jest_result = needCookie ? (requestCookie as UTSJSONObject).toMap().size > 0 : (requestCookie as UTSJSONObject).toMap().size == 0
            }
          },
          fail: () => {
            this.jest_result = false;
          },
        });
      },
292 293 294 295 296 297 298 299 300 301 302
      jest_timeout_null() {
        uni.request({
          url: this.host + (methodMap['GET'] as string),
          method: "GET",
          timeout: null,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
          success: () => {
            this.jest_result = true;
          },
303
          fail: () => {
304 305 306
            this.jest_result = false;
          },
        });
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
      },
      jest_get_with_data() {
        uni.request({
          url: "https://unidemo.dcloud.net.cn/api/banner/36kr",
          method: "GET",
          data:{
            column: 'id,post_id,title,author_name,cover,published_at' //需要的字段名
          },
          timeout: 6000,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
          success: () => {
            this.jest_result = true;
          },
          fail: () => {
            this.jest_result = false;
          },
        });
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
      },
      jest_get_with_generics() {
        uni.request<GETDataType>({
          url: this.host + (methodMap['GET'] as string),
          method: "GET",
          timeout: null,
          sslVerify: false,
          withCredentials: false,
          firstIpv4: false,
          success: (res: RequestSuccess<GETDataType>) => {
            console.log("success :", res.data?.data);
            this.jest_result = true;
          },
          fail: () => {
            this.jest_result = false;
          },
        });
      }
344 345
    }
  }
雪洛's avatar
雪洛 已提交
346
</script>