Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

移动端 H5 下 Taro.setClipboardData 无效 #4611

Closed
gujintao1900 opened this issue Oct 16, 2019 · 12 comments
Closed

移动端 H5 下 Taro.setClipboardData 无效 #4611

gujintao1900 opened this issue Oct 16, 2019 · 12 comments
Labels
bug Something isn't working

Comments

@gujintao1900
Copy link

gujintao1900 commented Oct 16, 2019

问题描述
移动端 H5 下 Taro.setClipboardData 无效

复现步骤

PC端 Chrome 是可以的,移动端 Safari 不行

Taro.setClipboardData({ data });

期望行为
移动端 H5 下 Taro.setClipboardData 无效

报错信息

系统信息
Taro CLI 1.3.13 environment info:
System:
OS: macOS 10.15
Shell: 5.7.1 - /bin/zsh
Binaries:
Node: 12.10.0 - ~/.nvs/default/bin/node
Yarn: 1.17.3 - /usr/local/bin/yarn
npm: 6.10.3 - ~/.nvs/default/bin/npm
npmPackages:
@tarojs/async-await: 1.3.13 => 1.3.13
@tarojs/components: 1.3.13 => 1.3.13
@tarojs/plugin-babel: 1.3.13 => 1.3.13
@tarojs/plugin-csso: 1.3.13 => 1.3.13
@tarojs/plugin-sass: 1.3.13 => 1.3.13
@tarojs/plugin-uglifyjs: 1.3.13 => 1.3.13
@tarojs/redux: 1.3.13 => 1.3.13
@tarojs/redux-h5: 1.3.13 => 1.3.13
@tarojs/router: 1.3.13 => 1.3.13
@tarojs/taro: 1.3.13 => 1.3.13
@tarojs/taro-alipay: 1.3.13 => 1.3.13
@tarojs/taro-h5: 1.3.13 => 1.3.13
@tarojs/taro-swan: 1.3.13 => 1.3.13
@tarojs/taro-tt: 1.3.13 => 1.3.13
@tarojs/taro-weapp: 1.3.13 => 1.3.13
@tarojs/webpack-runner: 1.3.13 => 1.3.13
eslint-config-taro: 1.3.13 => 1.3.13
eslint-plugin-taro: 1.3.13 => 1.3.13
nerv-devtools: ^1.4.4 => 1.4.4
nervjs: ^1.4.4 => 1.4.4

@taro-bot
Copy link

taro-bot bot commented Oct 16, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@gujintao1900 gujintao1900 changed the title 移动端 Taro.setClipboardData 无效 Oct 16, 2019
@gujintao1900 gujintao1900 changed the title 移动端 Taro.setClipboardData 无效 移动端 H5 下 Taro.setClipboardData 无效 Oct 16, 2019
@Garfield550
Copy link
Collaborator

你好,这是一个已知问题,并且有提交尚未合并,请等待后续版本更新。
#4247

@luckyadam
Copy link
Member

@Garfield550 可以帮忙看看是否合适哦~ 可以的话就合入吧~

@Garfield550
Copy link
Collaborator

@luckyadam 这几天有点忙,争取周五晚上看一下。

@A0150315
Copy link
Contributor

@Garfield550 @luckyadam 这个PR的代码有问题,iOS会唤起键盘,不用合了😂

@Garfield550
Copy link
Collaborator

@A0150315 了解

@nearzeno
Copy link

@Garfield550 @luckyadam 试了下,这个PR在IOS(ip6sp, v13.1.3)下依旧无法复制

@nearzeno
Copy link

无法复制的可以先用下面的代码试下

const copy = function (message) {
var input = document.createElement("input")
input.value = message
document.body.appendChild(input)
input.select()
input.setSelectionRange(0, input.value.length), document.execCommand('Copy')
document.body.removeChild(input)
}

@Garfield550
Copy link
Collaborator

@aloneweb 我在 iOS 13.1.3 6sP Safari 测试过可以了,你可以 clone master 分支的代码测试一下你的设备。

@nearzeno
Copy link

@Garfield550 我这里6sp, ios 13.1.3试了没有问题

@Garfield550
Copy link
Collaborator

@aloneweb 居然是一样的设备,我先 Close 好了,再有问题 reopen 吧。

@Michaelooo
Copy link

Document.execCommand 已废弃,H5中使用execCommand 这个 API 来设置剪贴板,发现部分浏览器不可用。

  • 移动端 chrome-84.0.x 不可用
  • 微信-7.0.14 不可用
  • 移动端 safari&ios- 14.0 不可用
  • ……

不知可有什么解决办法?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

6 participants