Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
f73e6fa7
U
uni-api
项目概览
DCloud
/
uni-api
通知
670
Star
23
Fork
12
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-api
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f73e6fa7
编写于
3月 24, 2023
作者:
DCloud-yinjiacheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
uni-usercapturescreen 文档更新
上级
b6d2f0d8
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
15 addition
and
4 deletion
+15
-4
uni_modules/uni-usercapturescreen/changelog.md
uni_modules/uni-usercapturescreen/changelog.md
+6
-0
uni_modules/uni-usercapturescreen/package.json
uni_modules/uni-usercapturescreen/package.json
+2
-2
uni_modules/uni-usercapturescreen/readme.md
uni_modules/uni-usercapturescreen/readme.md
+6
-0
uni_modules/uni-usercapturescreen/utssdk/interface.uts
uni_modules/uni-usercapturescreen/utssdk/interface.uts
+1
-2
未找到文件。
uni_modules/uni-usercapturescreen/changelog.md
浏览文件 @
f73e6fa7
## 1.0.4(2023-03-24)
新增开启/关闭防截屏功能
## 1.0.3(2023-03-17)
修复android平台 部分场景下js可能报错的问题
## 1.0.2(2023-03-16)
修复Android平台在小米设备无法监听的问题 修复Android平台调用uni.onUserCaptureScreen必然会触发回调的问题
## 1.0.1(2022-10-27)
## 1.0.1(2022-10-27)
修改插件描述
修改插件描述
## 1.0.0(2022-10-26)
## 1.0.0(2022-10-26)
...
...
uni_modules/uni-usercapturescreen/package.json
浏览文件 @
f73e6fa7
{
{
"id"
:
"uni-usercapturescreen"
,
"id"
:
"uni-usercapturescreen"
,
"displayName"
:
"uni-usercapturescreen"
,
"displayName"
:
"uni-usercapturescreen"
,
"version"
:
"1.0.
1
"
,
"version"
:
"1.0.
4
"
,
"description"
:
"用户主动截屏事件监听"
,
"description"
:
"用户主动截屏事件监听"
,
"keywords"
:
[
"keywords"
:
[
"截屏"
"截屏"
],
],
"repository"
:
""
,
"repository"
:
""
,
"engines"
:
{
"engines"
:
{
"HBuilderX"
:
"^3.6.
0
"
"HBuilderX"
:
"^3.6.
8
"
},
},
"dcloudext"
:
{
"dcloudext"
:
{
"type"
:
"uts"
,
"type"
:
"uts"
,
...
...
uni_modules/uni-usercapturescreen/readme.md
浏览文件 @
f73e6fa7
...
@@ -13,3 +13,9 @@
...
@@ -13,3 +13,9 @@
用户主动截屏事件。取消事件监听。
用户主动截屏事件。取消事件监听。
> 使用文档:[https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen](https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen)
> 使用文档:[https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen](https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen)
### uni.setUserCaptureScreen
开启/关闭防截屏。
> 使用文档:[https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen](https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen)
uni_modules/uni-usercapturescreen/utssdk/interface.uts
浏览文件 @
f73e6fa7
...
@@ -47,7 +47,6 @@ export type SetUserCaptureScreenSuccess = {
...
@@ -47,7 +47,6 @@ export type SetUserCaptureScreenSuccess = {
export type SetUserCaptureScreenFail = {
export type SetUserCaptureScreenFail = {
/**
/**
* 错误码
* 错误码
* 0:成功
* 12001:system not support
* 12001:system not support
* 12010:system internal error
* 12010:system internal error
*/
*/
...
@@ -109,7 +108,7 @@ export type SetUserCaptureScreenOptions = {
...
@@ -109,7 +108,7 @@ export type SetUserCaptureScreenOptions = {
* @param {SetUserCaptureScreenOptions} options
* @param {SetUserCaptureScreenOptions} options
* @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen
* @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen
* @platforms APP-IOS = ^9.0,APP-ANDROID = ^4.4
* @platforms APP-IOS = ^9.0,APP-ANDROID = ^4.4
* @since 3.7.
3
* @since 3.7.
7
*/
*/
export type SetUserCaptureScreen = (options : SetUserCaptureScreenOptions) => void
export type SetUserCaptureScreen = (options : SetUserCaptureScreenOptions) => void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录