HarmonyOS 鸿蒙Next针对网络请求回调参数的设定
HarmonyOS 鸿蒙Next针对网络请求回调参数的设定
对于网络请求的回调参数,因对后台返回数据的不可控性,要如何设计会更合适?
是否对参数类型的设定需要如下所示
export interface ProtocolData {
protocolList: ProtocolList[] | null;
versionId: string | null;
}
export interface ProtocolList {
protocolName: string | null;
protocolType: number | null;
businessType: number | null;
protocol: string | null;
}
是否对参数类型的设定需要如下所示
export interface ProtocolData {
protocolList: ProtocolList[] | null;
versionId: string | null;
}
export interface ProtocolList {
protocolName: string | null;
protocolType: number | null;
businessType: number | null;
protocol: string | null;
}
更多关于HarmonyOS 鸿蒙Next针对网络请求回调参数的设定的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
1 回复