Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
dae68daa
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3200
Star
106
Fork
813
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
94
列表
看板
标记
里程碑
合并请求
70
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
94
Issue
94
列表
看板
标记
里程碑
合并请求
70
合并请求
70
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
dae68daa
编写于
7月 16, 2024
作者:
VK1688
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:harmony/dev.md
上级
4f6d7f3d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
65 addition
and
3 deletion
+65
-3
docs/tutorial/harmony/dev.md
docs/tutorial/harmony/dev.md
+65
-3
未找到文件。
docs/tutorial/harmony/dev.md
浏览文件 @
dae68daa
...
...
@@ -124,7 +124,7 @@
这里以打开华为应用市场详情页为例
定义API名称为:
uni.
openAppProduct
定义API名称为:openAppProduct
1.
右键 uni_modules 目录(没有则新建目录)点击
`新建uni_modules插件`
...
...
@@ -132,6 +132,9 @@
2.
插件名称为
`uni-openAppProduct`
(注意,开发者自己创建时,不可以使用
`uni-`
开头,应以自己名字或昵称的缩写命令,如:
`wq-openAppProduct`
3.
修改插件根目录的
`package.json`
中的
`uni_modules`
节点,新增如下配置,arkts 为 true 代表支持鸿蒙
**注意:下方的属性名中包含的 `uni` 请勿更改成自己的名字或昵称缩写,只能用 `uni`**
```
js
{
...
其他属性
...
...
@@ -293,10 +296,12 @@ export function openAppProduct(options : OpenAppProductOptions) {
6.
编写演示页面,项目根目录下
`/pages/index/index.vue`
内容如下
**方式一(挂载到uni全局对象)**
```
vue
<
template
>
<view
class=
"content"
>
<button
@
click=
"openAppProduct
"
>
打开应用市场
</button>
<button
class=
"button"
@
click=
"openAppProductBtn
"
>
打开应用市场
</button>
</view>
</
template
>
...
...
@@ -311,7 +316,7 @@ export function openAppProduct(options : OpenAppProductOptions) {
},
methods
:
{
openAppProduct
()
{
openAppProduct
Btn
()
{
uni
.
openAppProduct
({
success
:
(
res
)
=>
{
console
.
log
(
'
success:
'
,
JSON
.
stringify
(
res
));
...
...
@@ -335,6 +340,63 @@ export function openAppProduct(options : OpenAppProductOptions) {
align-items
:
center
;
justify-content
:
center
;
}
.button
{
width
:
100%
;
margin
:
10px
;
}
</
style
>
```
**方式二(使用import引入)**
```
vue
<
template
>
<view
class=
"content"
>
<button
class=
"button"
@
click=
"openAppProductBtn"
>
打开应用市场
</button>
</view>
</
template
>
<
script
lang=
"uts"
>
import
{
openAppProduct
}
from
"
@/uni_modules/xxx-openAppProduct
"
export
default
{
data
()
{
return
{
}
},
onLoad
()
{
},
methods
:
{
openAppProductBtn
()
{
openAppProduct
({
success
:
(
res
:
any
)
=>
{
console
.
log
(
'
success:
'
,
JSON
.
stringify
(
res
));
},
fail
:
(
err
:
any
)
=>
{
console
.
error
(
'
fail:
'
,
JSON
.
stringify
(
err
));
},
complete
:
(
res
:
any
)
=>
{
console
.
log
(
'
complete:
'
,
JSON
.
stringify
(
res
));
}
});
}
}
}
</
script
>
<
style
>
.content
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
justify-content
:
center
;
}
.button
{
width
:
100%
;
margin
:
10px
;
}
</
style
>
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录