Harmony开发笔记5

常量定义

在HarmonyOS中我们如果定义常量,可以创建常量类并导出,通过static readonly修饰。

export class ApiConst{

  /**
   * api根路径
   */
  static readonly BASE_API: string = "http://192.168.100.112:8080"
  /**
   * 登录
   */
  static readonly LOGIN: string = this.BASE_API + "/api/login"
}
posted @ 2024-12-09 16:48  拜雨  阅读(16)  评论(0编辑  收藏  举报