检测到您已登录华为云国际站账号,为了您更好的体验,建议您访问国际站服务网站 https://www.huaweicloud.com/intl/zh-cn
不再显示此消息
KooMessage的API是否存在对调用IP的限制? 无限制。 父主题: API接口
API接口 KooMessage是否支持集成到第三方产品中? KooMessage的API是否存在对调用IP的限制?
app-preview-sideslip组件 HTML <div class="Sideslip" [style]="item.style"> <div class="Sideslip-scroll" [style]="{ width: sideslipList.length *
app-preview-swiper组件 开发横滑组件时可定义的属性及其作用如表1所示,您可根据实际需求进行定义。 表1 横滑组件属性及作用 属性 作用 item.style 样式定义。 item.swiper.autoplay 是否自动轮播。 item.swiper.loop 是否循环。
编写app-preview组件的JavaScript逻辑 您可通过编写app-preview组件的重要js逻辑来设置原模板在预览界面的缩放比例、大小和位置,相关参数及用途如表1所示。 表1 js逻辑参数及用途 参数名 用途 outerWidth 控制模板在预览视图中的缩放尺寸。 pages[0]
app-preview-ticketImage组件 HTML <div [style]="item.style" class="ticketImage"> <div class="ticketImage_List"> <div // ngFor为循环指令 *ngFor="let
查询视频模板封面图 功能介绍 根据用户提供的过滤条件,查询视频模板封面图资源列表。 URI GET /v1/aim/template-material-thumbnails 表1 Query参数 参数 是否必选 参数类型 描述 aim_resource_id 是 String 目标资源ID。
app-preview-card-vouchers组件 HTML <div [style]="item.style" class="cardVouchers"> // innerHTML会把代码片段插入到当前节点中 <div class="title" [innerHTML]="item
app-preview-moreGoods组件 HTML <div :style="item.style" class="moreGoods"> <div class="title"> // innerHTML会把代码片段插入到当前节点中 <span class="title-name"
app-preview-video组件 HTML <div> <video class="preview-element" [poster]="item.cover" controls [style]="item.style" [src]="item.src"></video> </div>
app-preview-image组件 HTML <div class="imgBox preview-element"> <img class="preview-element" [src]="item?.src" [style]="item.style" // 若图片的动作类
app-preview-button组件 HTML <div> <p [style]="item.style" (click)="PreviewService.emit(item.event)" class="preview-element" > {{ item.text }} </p>
查询模板 功能介绍 根据客户提供的过滤条件查询智能信息模板列表。 URI GET /v1/aim/templates 表1 Query参数 参数 是否必选 参数类型 描述 tpl_id 否 String 智能信息模板ID。 最小长度:0 最大长度:36 tpl_name 否 String
支持的子组件类型 以图1为例,该模板的预览视图由image、text、button三个子组件拼接而成。目前KooMessage的智能短信模板已支持11种类型的子组件开发,详见表1。对于各类型子组件,子组件代码示例提供了相应的HTML、CSS、JavaScript代码段供参考,部分
查询智能消息模板素材列表 功能介绍 根据用户提供的过滤条件,查询模板素材列表。 URI GET /v1/aim/template-materials 表1 Query参数 参数 是否必选 参数类型 描述 resource_type 是 String 资源类型。 image:表示图片
app-preview-eCommerce组件 HTML <div class="ECommerce"> <swiper [autoplay]="false" [loop]="true" *ngIf="item.content.imageList.visibility === 'visible'">
子组件代码示例 app-preview-text组件 app-preview-button组件 app-preview-image组件 app-preview-video组件 app-preview-sideslip组件 app-preview-swiper组件 app-preview-eCommerce组件
父组件代码示例 HTML <div class="previews" [style]=" pages[0].style" > // ngFor为循环指令,遍历content数组获取item <div *ngFor="let item of pages[0].content">
父组件开发 编写app-preview组件的JavaScript逻辑 父组件代码示例
总体开发思路 渲染模板预览视图所需的数据保存在pages字段中。调用智能信息模板查询API接口获取pages字段,经多个前端组件开发后,即可渲染出适配于自用平台的预览视图。总体开发流程如图1所示。 图1 将模板数据渲染成预览视图的开发流程 关键阶段介绍 调用查询模板API,获取pages字段。