1. 程式人生 > 實用技巧 >uni-app實現點選複製按鈕複製前面的內容

uni-app實現點選複製按鈕複製前面的內容

/*
            複製按鈕的實現
            */
            copy(value) {
                //提示模板
                uni.showModal({
                    content: value, //模板中提示的內容
                    confirmText: '複製內容',
                    success: () => { //點選複製內容的後調函式
                        //uni.setClipboardData方法就是講內容複製到貼上板
                        // API `setClipboardData` is not yet implemented
                        //意思是H5端沒有這個介面!!!
                        uni.setClipboardData({
                            data: value, //要被複制的內容
                            success: function() {
                                    //重點~做筆記
                                    //在success中加入uni.hideToast()可以解決
                                    uni.hideToast({
                                        title: '複製成功',
                                        duration: 2000,
                                        icon: 'none'
                                    });
                                    //以下就可自定義操作了~
                                },
                                fail: function(err) {
                                    uni.showToast({
                                        title: '複製失敗',
                                        duration: 2000,
                                        icon: 'none'
                                    });
                                }
                        });
                    }
                });
            }

這個報錯後續看看如何解決!!!

這個可以參考:https://blog.csdn.net/qq_40976321/article/details/107053434

很好的解答了