当前位置: 首页 > news >正文

聊城哪里有做网站的新品牌推广策划方案

聊城哪里有做网站的,新品牌推广策划方案,wordpress+qq音乐插件,supercell账号注册网站提供外部应用组件嵌入式显示功能,即外部应用提供的UI可在本应用内显示。 说明: 该组件从API Version 9开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。本组件为系统接口。 子组件 无 接口 PluginComponent(value:…

提供外部应用组件嵌入式显示功能,即外部应用提供的UI可在本应用内显示。

说明:

  • 该组件从API Version 9开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
  • 本组件为系统接口。

子组件

接口

PluginComponent(value: { template: PluginComponentTemplate, data: KVObject})

创建插件组件,用于显示外部应用提供的UI。

参数:

参数名参数类型必填参数描述
value{
template:  PluginComponentTemplate,
data: KVObject
}
template:  组件模板,用于跟提供者定义的组件绑定。
data: 传给插件组件提供者使用的数据。

PluginComponentTemplate类型说明

参数类型描述
sourcestring组件模板名。
bundleNamestring提供者Ability的bundleName。

属性

必须显式设置组件宽高为非0有效值。

说明:

模板支持两种提供方式:

  • 1.使用绝对路径进行资源提供:source字段填写模板绝对路径,bundleName不需要填写。仅适用于不需要加载资源的单独模板页面,不建议使用。

  • 2.通过应用包进行资源提供:bundleName字段需要填写应用包名;source字段填写相对hap包的模板相对路径,对于多hap场景,通过相对路径&模块名称的方式进行hap包的确认。

    例如:{source:'pages/PluginProviderExample.ets&entry', bundleName:'com.example.provider'}

    仅对FA模型支持source字段填写AbilityName进行模板提供。

    例如:{source:'plugin', bundleName:'com.example.provider'}

事件

仅支持绑定手势方法,并分发给提供方页面,在提供方页面内部处理。

除支持通用事件,还支持以下事件:

名称功能描述
onComplete(callback: () => void)组件加载完成回调。
onError(callback: (info: { errcode: number, msg: string }) => void)组件加载错误回调。
errcode: 错误码。
msg: 错误信息。

示例

组件使用方

//PluginUserExample.ets
import plugin from "./plugin_component"
interface Info{errcode:number,msg:string
}
@Entry
@Component
struct PluginUserExample {build() {Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {Text('Hello World').fontSize(50).fontWeight(FontWeight.Bold)Button('Register Request Listener').fontSize(30).width(400).height(100).margin({top:20}).onClick(()=>{plugin.onListener()console.log("Button('Register Request Listener')")})Button('Request').fontSize(50).width(400).height(100).margin({ top: 20 }).onClick(() => {plugin.Request()console.log("Button('Request')")})PluginComponent({template: { source: 'pages/PluginProviderExample.ets&entry', bundleName: 'com.example.plugin' },data: { 'countDownStartValue': 'new countDownStartValue' }}).size({ width: 500, height: 350 }).onComplete(() => {console.log("onComplete")}).onError((info:Info) => {console.log("onComplete" + info.errcode + ":" + info.msg)})}.width('100%').height('100%')}
}

组件提供方

//PluginProviderExample.ets
import plugin from "./plugin_component"@Entry
@Component
struct PluginProviderExample {@State message: string = 'no click!'build() {Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {Button('Register Push Listener').fontSize(30).width(400).height(100).margin({top:20}).onClick(()=>{plugin.onListener()console.log("Button('Register Push Listener')")})Button('Push').fontSize(30).width(400).height(100).margin({top:20}).onClick(()=>{plugin.Push()this.message = "Button('Push')"console.log("Button('Push')")})Text(this.message).height(150).fontSize(30).padding(5).margin(5)}.width('100%').height('100%').backgroundColor(0xDCDCDC).padding({ top: 5 })}
}

Plugin组件工具

FA模型
//当前示例代码仅适用于js源文件
//plugin_component.js
import pluginComponentManager from '@ohos.pluginComponent'function onPushListener(source, template, data, extraData) {console.log("onPushListener template.source=" + template.source)console.log("onPushListener template.ability=" + template.ability)console.log("onPushListener data=" + JSON.stringify(data))console.log("onPushListener extraData=" + JSON.stringify(extraData))
}function onRequestListener(source, name, data)
{console.log("onRequestListener name=" + name);console.log("onRequestListener data=" + JSON.stringify(data));return {template:"plugintemplate", data:data};
}export default {//register listeneronListener() {pluginComponentManager.on("push", onPushListener)pluginComponentManager.on("request", onRequestListener)},Push() {// 组件提供方主动发送事件pluginComponentManager.push({want: {bundleName: "com.example.plugin",abilityName: "com.example.myapplication.PluginProviderExample",},name: "PluginProviderExample",data: {"key_1": "plugin component test","key_2": 34234},extraData: {"extra_str": "this is push event"},jsonPath: "",},(err, data) => {console.log("push_callback: push ok!");})},Request() {// 组件使用方主动发送事件pluginComponentManager.request({want: {bundleName: "com.example.plugin",abilityName: "com.example.myapplication.PluginProviderExample",},name: "PluginProviderExample",data: {"key_1": "plugin component test","key_2": 34234},jsonPath: "",},(err, data) => {console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability)console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source)console.log("request_callback: data=" + JSON.stringify(data.data))console.log("request_callback: extraData=" + JSON.stringify(data.extraData))})}
}
Stage模型
//当前示例代码仅适用于js源文件
//plugin_component.js
import pluginComponentManager from '@ohos.pluginComponent'function onPushListener(source, template, data, extraData) {console.log("onPushListener template.source=" + template.source)console.log("onPushListener template.ability=" + template.ability)console.log("onPushListener data=" + JSON.stringify(data))console.log("onPushListener extraData=" + JSON.stringify(extraData))
}function onRequestListener(source, name, data)
{console.log("onRequestListener name=" + name);console.log("onRequestListener data=" + JSON.stringify(data));return {template:"plugintemplate", data:data};
}export default {//register listeneronListener() {pluginComponentManager.on("push", onPushListener)pluginComponentManager.on("request", onRequestListener)},Push() {// 组件提供方主动发送事件pluginComponentManager.push({owner: {bundleName: "com.example.myapplication",abilityName: "com.example.myapplication.MainAbility",},target: {bundleName: "com.example.plugin",abilityName: "com.example.myapplication.PluginProviderExample",},name: "PluginProviderExample",data: {"key_1": "plugin component test","key_2": 34234},extraData: {"extra_str": "this is push event"},jsonPath: "",},(err, data) => {console.log("push_callback: push ok!");})},Request() {// 组件使用方主动发送事件pluginComponentManager.request({owner: {bundleName: "com.example.myapplication",abilityName: "com.example.myapplication.MainAbility",},target: {bundleName: "com.example.plugin",abilityName: "com.example.myapplication.PluginProviderExample",},name: "PluginProviderExample",data: {"key_1": "plugin component test","key_2": 34234},jsonPath: "",},(err, data) => {console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability)console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source)console.log("request_callback: data=" + JSON.stringify(data.data))console.log("request_callback: extraData=" + JSON.stringify(data.extraData))})}
}

最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 

http://www.dinnco.com/news/4307.html

相关文章:

  • 网站后台会员管理网上推广怎么收费
  • 建立销售型网站武汉网站设计公司
  • 做日本ppt的模板下载网站有哪些seo网站优化技术
  • 上海好的高端网站建设服务公司头条搜索是百度引擎吗
  • 东莞网页设计培训学校北京关键词优化平台
  • wordpress hashone山东济南seo整站优化费用
  • 建设银行网站点不进去推广赚钱的平台
  • 国外网站页面做多大付费推广有几种方式
  • 云游戏网站在线玩弹窗广告最多的网站
  • 模型下载网站开发流程短信广告投放
  • 南京网站推广营销公司哪家好南宁百度seo排名价格
  • 网站建设 工作室网络防御中心
  • 网站后台 模板网站模板下载免费
  • 论文引用网站数据 如何做注释友情链接交换的作用在于
  • 深圳市政府网站建设 网站管理天津百度推广公司地址
  • 网站备案号被注销什么原因网店seo排名优化
  • java语言做网站全网引擎搜索
  • 网站推广做招商加盟google在线代理
  • 做个购物商城网站多长时间2023年小学生简短小新闻
  • 毕设做网站可以用模板吗全网营销系统是干什么的
  • 山东省城乡建设厅网站seo零基础视频教程
  • 网站上的动态图怎么做十大免费cms建站系统介绍
  • 南昌市住房城乡建设委门户网站网络推广山东
  • 服装企业网站模板个人网页怎么做
  • 哪家做网站的好推广优化seo
  • 网站上的销售怎么做的2000元代理微信朋友圈广告
  • 六盘水网站设计提升seo排名平台
  • 安全网多少钱一个seo网站推广如何做
  • cms电影网站模板精准营销的案例
  • 网站流程表成人零基础学电脑培训班