美丽的神话 发表于 2024-8-21 01:11:40

【鸿蒙实战开发教程】HarmonyOS next开发网络哀求封装(Api11Release)

前言

   根据研究机构Counterpoint Research发布的最新数据,2024年第一季度,鸿蒙OS份额由客岁一季度的8%上涨至17%,iOS份额则从20%下降至16%。 这意味着,华为鸿蒙OS在中国市场的份额超越苹果iOS,已成中国第二大操作系统。

随着鸿蒙市场份额的不停提升,相应的岗位也会迎来一个爆发式的增长。这对于想要换赛道的程序员来说是一个非常好的消息,话说各人近来有想法转型鸿蒙开发吗?

本文主要讲一下鸿蒙开发中网络哀求封装
鸿蒙相干版本信息:

HarmonyOS NEXT,Developer Preview2,Api Version 11 Release
电脑系统:macM1 编译器:DevEco Studio NEXT Developer Preview2,4.1.7.300
(API9对应的mac版本的模仿器无法识别的题目在此版本编译器已经修复)
模仿器也是一样的Preview2版本(需要申请)
近来开始基于鸿蒙NEXT版本也就是俗话说的纯血鸿蒙举行开发,本来是不打算写这个文章因为用API9写的时候其时是封装了一套网络哀求的,但是~API 11改了一些地方: any 被禁止使用了(这是影响最大的地方其他的改变也造成了一些影响但是我就不外多形貌了),然后就导致报错严重!!
https://img-blog.csdnimg.cn/direct/7b8caba91f914613a05cd64f4a126b87.png
下面就开始进入主题:
起首在module.json5中配置基础网络权限

"requestPermissions": [
    {
      "name": "ohos.permission.INTERNET",
    }
]
定义base常量

我这里base地址使用的wan安卓的api
https://img-blog.csdnimg.cn/direct/73c7962c13a34848928c50feda9dfdde.png
封装泛型工具类

https://img-blog.csdnimg.cn/direct/daccdf8615054b86b37e9aceb929fddb.png
留意data,不能像之前那样
data: T = null
会报错,而且必须都有初始值
封装request

async function requestSync<T>(path: string, method: http.RequestMethod, extraData?: Object): Promise<Response<T>> {
return new Promise<Response<T>>((resolve, reject) => {
    let url = NetConstants.BASE_URL + path;
    let header: HeaderInterFace = {
      ApiVersion: '272',
      'Content-Type': 'application/json',
      platform: '',
      'encryption-mode': 'base64',
      auth: NetConstants.AUTH,
      channel: 'JYB',
      timeout : NetConstants.TIMEOUT
    }
    if (method === http.RequestMethod.POST) {
      header = {
      ApiVersion: '272',
      'Content-Type': 'application/x-www-form-urlencoded',
      platform: '',
      'encryption-mode': 'base64',
      auth: NetConstants.AUTH,
      channel: 'JYB',
      timeout : NetConstants.TIMEOUT
      }
    }
    let httpRequest = http.createHttp();
    hilog.info(0, NetConstants.NET_TAG, `start request, path: ${path}, method: ${method}, extraData: ` + JSON.stringify(extraData));
    httpRequest.request(
      url,
      {
      method: method,
      expectDataType: http.HttpDataType.OBJECT,
      header: header,
      extraData: extraData
      },
      (err, data) => {
      let res = new Response<T>()
      if (!err && data.responseCode === 200) {
          //Object.assign("", "");对象合并
          if (typeof data.result === 'string') {
            res.data = JSON.parse(data.result)
          } else {
            // Object.assign(res, data.result);
            res.data = data.result as T
          }
          hilog.info(0, NetConstants.NET_TAG, `request success, path: ${path}, result: ${JSON.stringify(res)}`)
      } else {
          hilog.error(0, NetConstants.NET_TAG, `request error, path: ${path}, error: ${JSON.stringify(err)}`)
          res.errorCode = data?.responseCode??-1
          res.errorMsg = err?.message??""
      }
      resolve(res);
      }
    )
})
}

//封装接口
export default class Api {
private static instance: Api;

private constructor() {
}

static net(): Api {
    if (Api.instance === undefined) {
      Api.instance = new Api();
    }
    return Api.instance;
}

async login(username: string, password: string): Promise<Response<UserData>> {
    return requestSync("/user/login", http.RequestMethod.POST, `username=${username}&password=${password}`);
}

async logout(): Promise<Response<string>> {
    return requestSync("/user/logout/json", http.RequestMethod.GET);
}

async getUserInfo(): Promise<Response<UserData>> {
    return requestSync("/lg/coin/userinfo/json", http.RequestMethod.GET);
}

}

interface HeaderInterFace {
'ApiVersion': string,
'Content-Type': string,
'platform': string,
'encryption-mode': string,
'auth': string,
'channel': string,
'timeout': number
}
我这里没有编写处理惩罚token和加密加密相干的,这两个实在也不复杂,各人可以本身添加。
我这里只写了三个接口,但是实在相称于只有一个post哀求一个get哀求,假如需要delete、put哀求本身添加。
试一下:
一个简单的登岸页:
@Entry
@Component
export struct Login {

@State showLoading: boolean = false;
@State title: string = "登录";
private account: string = "";
private password: string = "";

async login(){
    if (!this.account) {
      toast("请输入用户名");
      return;
    }
    if (!this.password) {
      toast("请输入密码");
      return;
    }
    this.showLoading = true;
    let res = await Api.net().login(this.account, this.password);
    this.showLoading = false;
    if (res.isSuccessWithData()) {
      toast("登录成功");
    } else {
      toast(res.errorMsg);
    }
}

build() {

    Stack(){
      Column() {
      TextInput({
          placeholder: "请输入用户名"
      })
          .fontSize(15)
          .fontColor($r("app.color.text_h1"))
          .type(InputType.Email)
          .onChange((value) => {
            this.account = value
          })
      TextInput({
          placeholder: "请输入密码"
      })
          .margin({ top: 16 })
          .fontSize(15)
          .fontColor($r("app.color.text_h1"))
          .type(InputType.Password)
          .onChange((value) => {
            this.password = value
          })
      Button("登录", {
          type: ButtonType.Capsule
      })
          .width('100%')
          .margin({ top: 50 })
          .fontSize(15)
          .fontColor($r("app.color.white"))
          .backgroundColor($r("app.color.color_shubihong"))
          .onClick((e) => {
            this.login();
          })
      }
      .width('100%')
      .margin({ top: 120 })
      .padding({ left: 16, right: 16 })
    }
    .width('100%')
    .height('100%')

}

}
重点是这句:
https://img-blog.csdnimg.cn/direct/44af19934ce1418db6caf78972860741.png
哀求效果:
https://img-blog.csdnimg.cn/direct/25b736b10a3b4e78a009b63b0dcd4a79.png
总结
以上网路哀求的封装更多的是本身的使用风俗,也清楚有许多需要改进的空间,假如有大佬能更进一步固然更好。
写在最后

有许多小伙伴不知道该从哪里开始学习鸿蒙开发技能?也不知道鸿蒙开发的知识点重点把握的又有哪些?自学时频仍踩坑,导致浪费大量时间。效果照旧一孔之见。所以有一份实用的鸿蒙(HarmonyOS NEXT)全栈开发资料用来跟着学习是非常有必要的。
这份鸿蒙(HarmonyOS NEXT)资料包含了鸿蒙开发必把握的核心知识要点,内容包含了
最新鸿蒙全栈开发学习线路https://img-blog.csdnimg.cn/direct/a0f94ac2d6774423bc7bcd02e38126b3.png

鸿蒙HarmonyOS开发讲授视频

https://img-blog.csdnimg.cn/direct/9f122916ea884557beb399c31a841588.png
https://img-blog.csdnimg.cn/direct/f6a827faedc045efa8290bb6120aa817.png
大厂面试真题

https://img-blog.csdnimg.cn/direct/7a9537448ee34ba6b116455217d7e6a6.png
https://img-blog.csdnimg.cn/direct/378277e510d3475aac068766cd14d91a.png
鸿蒙OpenHarmony源码剖析

https://img-blog.csdnimg.cn/direct/198f8cb388e346409f8ff2d1fe3b4ba9.png
这份资料能帮住各位小伙伴理清本身的学习思路,更加速捷有效的把握鸿蒙开发的各种知识。有需要的小伙伴自行领取,,先到先得~无套路领取!!

获取这份完备版高清学习路线,请点击→鸿蒙全栈开发学习资料


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 【鸿蒙实战开发教程】HarmonyOS next开发网络哀求封装(Api11Release)