[WXTAG] [JSCORE] The slot <template> or <script type="text/wxtag-template"> of <wx-open-launch-app> is missing
时间: 2024-09-20 20:10:22 浏览: 64
HTML5跳转小程序wx-open-launch-weapp的示例代码
4星 · 用户满意度95%
在微信小程序中,`<wx-open-launch-app>`标签用于引导用户打开其他应用。这个标签需要包含 `<template>` 或 `<script type="text/wxtag-template">` 子元素来定义跳转前展示的弹窗内容。如果缺失了这些部分,小程序会报错,提示"The slot <template> or <script type="text/wxtag-template"> of <wx-open-launch-app> is missing",意思是缺少了必要的模板脚本,导致无法正常显示和处理跳转逻辑。
为了修复这个问题,你需要确保在 `<wx-open-launch-app>` 中添加合适的模板,例如:
```html
<wx-open-launch-app>
<template>
<!-- 弹窗的内容 -->
<view>{{ tipMessage }}</view>
</template>
<script type="text/wxtag-template">
<script>
data: {
tipMessage: '点击跳转到其他应用'
}
</script>
</script>
</wx-open-launch-app>
```
在这个例子中,`<template>` 区域包含了要显示的消息,而 `script[type="text/wxtag-template"]` 则设置了数据属性。记得检查并提供实际的跳转链接或者其他所需信息。
阅读全文