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"
}