Skip to main content
Version: 3.x

Taro.setClipboardData(option)

Sets the content on the system clipboard.

Reference

Type

(option: Option) => Promise<Promised>

Parameters

Promised

PropertyTypeDescription
errMsgstringCall result
datastringThe clipboard content

Option

PropertyTypeRequiredDescription
datastringYesThe clipboard content
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

Sample Code

Taro.setClipboardData({
data: 'data',
success: function (res) {
Taro.getClipboardData({
success: function (res) {
console.log(res.data) // data
}
})
}
})

API Support

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