Skip to main content
Version: 3.x

Taro.getClipboardData(res)

Gets the content on the system clipboard.

Reference

Type

(res?: Option) => Promise<Promised>

Parameters

Promised

PropertyTypeDescription
errMsgstringCall result
datastringThe clipboard content

Option

PropertyTypeRequiredDescription
complete(res: any) => voidNoThe callback function used when the API call completed (always executed whether the call succeeds or fails)
fail(res: any) => voidNoThe callback function for a failed API call
success(res: Result) => voidNoThe callback function for a successful API call

SuccessCallbackOption

PropertyTypeDescription
datastringThe clipboard content

Sample Code

Taro.getClipboardData({
success: function (res){
console.log(res.data)
}
})

API Support

APIWeChat Mini-ProgramH5React Native
Taro.getClipboardData✔️✔️✔️