ipc网站备案查询,第一app模板免费下载,网站开发+百度编辑器,wordpress 插件更新ty.getAccountInfo
获取小程序账号信息 需引入MiniKit#xff0c;且在3.1.0版本才可使用 参数
Object object
属性类型默认值必填说明completefunction否接口调用结束的回调函数#xff08;调用成功、失败都会执行#xff09;successfunction否接口调用成功的回调函数…ty.getAccountInfo
获取小程序账号信息 需引入MiniKit且在3.1.0版本才可使用 参数
Object object
属性类型默认值必填说明completefunction否接口调用结束的回调函数调用成功、失败都会执行successfunction否接口调用成功的回调函数failfunction否接口调用失败的回调函数
object.success 回调参数
参数
Object res
属性类型说明miniProgramMiniProgramAccountInfo小程序账号信息
MiniProgramAccountInfo
PropertyTypeDescriptionappIdstring小程序 IDenvVersionstring小程序版本 - develop开发版 - trail体验版 - release正式版versionstring版本号
object.fail 回调参数
参数
Object res
属性类型说明errorMsgstring插件错误信息errorCodestring错误码innerErrorobject插件外部依赖错误信息 {errorMsg: string, errorCode: string }
函数定义示例
export type MiniProgramAccountInfo {/** 小程序 ID */appId: string;/*** 小程序版本* develop: 开发版* trail: 体验版* release: 正式版*/envVersion: string;/** 小程序版本号 */version: string;
};
/*** 获取小程序账号信息*/
export function getAccountInfo(params?: {/** 接口调用结束的回调函数调用成功、失败都会执行 */complete?: () void;/** 接口调用成功的回调函数 */success?: (params: {/** 小程序账号信息 */miniProgram: MiniProgramAccountInfo;}) void;/** 接口调用失败的回调函数 */fail?: (params: {errorMsg: string;errorCode: string | number;innerError: {errorCode: string | number;errorMsg: string;};}) void;
}): void; ty.getAccountInfoSync
获取小程序账号信息同步方法 需引入MiniKit且在 3.1.0 版本才可使用 getAccountInfo 的同步版本 返回值
属性类型说明miniProgramMiniProgramAccountInfo小程序账号信息
MiniProgramAccountInfo
PropertyTypeDescriptionappIdstring小程序 IDenvVersionstring小程序版本 - develop开发版 - trail体验版 - release正式版versionstring版本号
函数定义示例
export type MiniProgramAccountInfo {/** 小程序 ID */appId: string;/*** 小程序版本* develop: 开发版* trail: 体验版* release: 正式版*/envVersion: string;/** 小程序版本号 */version: string;
};
/*** 获取小程序账号信息*/
export function getAccountInfoSync(): {/** 小程序账号信息 */miniProgram: MiniProgramAccountInfo;
}; ty.setBoardIcon
设置小程序看板的 icon 需引入MiniKit且在3.0.3版本才可使用 参数
Object object
属性类型默认值必填说明iconstring是看板的 iconcompletefunction否接口调用结束的回调函数调用成功、失败都会执行successfunction否接口调用成功的回调函数failfunction否接口调用失败的回调函数
函数定义示例
/*** 小程序看板的icon小程序icon面板icon等*/
export function setBoardIcon(params: {/** 看板的icon */icon: string;/** 接口调用结束的回调函数调用成功、失败都会执行 */complete?: () void;/** 接口调用成功的回调函数 */success?: (params: null) void;/** 接口调用失败的回调函数 */fail?: (params: {errorMsg: string;errorCode: string | number;innerError: {errorCode: string | number;errorMsg: string;};}) void;
}): void; ty.setBoardIconSync
设置小程序看板的 icon 需引入MiniKit且在3.0.3版本才可使用 ty.setBoardIcon 的同步版本 参数
Object object
属性类型默认值必填说明iconstring是看板的 icon
函数定义示例
/*** 设置小程序看板的 icon*/
export function setBoardIconSync(params: {/** 看板的icon */icon: string;
}): null; ty.showBoardTitleIcon
显示小程序看板中的标题和 icon 需引入MiniKit且在3.0.3版本才可使用 参数
Object object
属性类型默认值必填说明completefunction否接口调用结束的回调函数调用成功、失败都会执行successfunction否接口调用成功的回调函数failfunction否接口调用失败的回调函数
函数定义示例
/*** 显示小程序看板中的标题和icon*/
export function showBoardTitleIcon(params?: {/** 接口调用结束的回调函数调用成功、失败都会执行 */complete?: () void;/** 接口调用成功的回调函数 */success?: (params: null) void;/** 接口调用失败的回调函数 */fail?: (params: {errorMsg: string;errorCode: string | number;innerError: {errorCode: string | number;errorMsg: string;};}) void;
}): void; ty.showBoardTitleIconSync
The synchronous method used to display the title and icon of the miniapp dashboard. Be sure to import MiniKit 3.0.3 or later. The synchronous method of ty.showBoardTitleIcon. Examples of function definitions
/*** Display the title and icon of the miniapp dashboard.*/
export function showBoardTitleIconSync(): null; ty.hideBoardTitleIcon
隐藏小程序看板中的标题和 icon 需引入MiniKit且在3.0.3版本才可使用 参数
Object object
属性类型默认值必填说明completefunction否接口调用结束的回调函数调用成功、失败都会执行successfunction否接口调用成功的回调函数failfunction否接口调用失败的回调函数
函数定义示例
/*** 隐藏小程序看板中的标题和icon*/
export function hideBoardTitleIcon(params?: {/** 接口调用结束的回调函数调用成功、失败都会执行 */complete?: () void;/** 接口调用成功的回调函数 */success?: (params: null) void;/** 接口调用失败的回调函数 */fail?: (params: {errorMsg: string;errorCode: string | number;innerError: {errorCode: string | number;errorMsg: string;};}) void;
}): void; ty.hideBoardTitleIconSync
隐藏小程序看板中的标题和 icon 同步方法 需引入MiniKit且在3.0.3版本才可使用 ty.hideBoardTitleIcon 的同步版本 函数定义示例
/*** 隐藏小程序看板中的标题和icon*/
export function hideBoardTitleIconSync(): null; 立即开发。