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

没有有知道钓鱼网站在哪儿做广州百度seo排名优化

没有有知道钓鱼网站在哪儿做,广州百度seo排名优化,杭州制作网站个人,设计软件网站定制开发前言 最近因为之前的630版本有点忙,导致断更了几天,现在再补上。换换脑子。 目前内测系统的华为应用市场,各种顶级APP陆续都放出来beta版本了,大体上都完成了主流程的开发。欣欣向荣的气息。 学习思路 关于学习HarmonyOS的问题…

前言

最近因为之前的630版本有点忙,导致断更了几天,现在再补上。换换脑子。
目前内测系统的华为应用市场,各种顶级APP陆续都放出来beta版本了,大体上都完成了主流程的开发。欣欣向荣的气息。

学习思路

关于学习HarmonyOS的问题,很多同学私聊我说,因为没有白名单访问不了最新的API,目前API已经到12。这其实影响不大,HarmonyOS和OpenHarmony的接口我比对了下,现在基本功能和作用没有区别,可能某些系统api导包名字有区别,但这不影响,可以无缝切换。

可以通过这个链接,访问OpenHarmony开源的API接口文档等信息。

点击左上角的分支,来控制你看的API文档版本。目前最新的是5.0 Beta1 这和HarmonyOS是一致的。目前看华为的策略就是开源鸿蒙和商业鸿蒙版本一致管理。
在这里插入图片描述

标关于官方推荐的组件级路由Navigation的使用心得体会

最近经历了一次应用架构更新,对于路由的概念有了深刻的认识。从两年前开发OpenHarmony开始,基本都是使用router路由和window窗口来控制模块之间的切换。整个页面逻辑的控制非常耦合,并且笨重不变。

随着API的迭代更新,目前华为官方推荐使用Navigaiton来替换router。

Navigaiton这个东西,方便就方便于它的定位,组件级别。而我们的老东西router是页面级别。

  1. 灵活性一目了然,我们可以将页面一部分组件,进行路由控制切换。
  2. 并且我们可以对路由的删除进行管理,而router是没有remove只能替换,并且替换路由函数,是强制没有页面转场动画的效果。
  3. 最大的优势在于系统提供了自动扩容的容器控件,并且支持分栏效果,在折叠屏手机上的适配会非常方便。

Navigation如何使用?

首先Navigation是个容器,并不是直接对标router一样来使用的。我们可以理解成,这家伙是个变形金刚,它是由三部分组成,首先是主页面容器Navigation,其次是子页面容器NavDestination,之后才是对标router的操作对象NavPathStack

(1)创建主页界面



struct MainPage { message: string = 'Hello World';// 创建一个页面栈对象并传入NavigationpageStack: NavPathStack = new NavPathStack()build() {Navigation(this.pageStack) {// 页面布局Row() {Column() {Text(this.message).fontSize(50).fontWeight(FontWeight.Bold).onClick(()=>{// 跳转到子页面this.pageStack.pushDestination({name: "OnePage",}, false); //该false表示不需要转场动画,默认是有的})}.width('100%')}.height('100%')}// 分为三种模式,(默认)自动NavigationMode.Auto,单页面NavigationMode.Stack和分栏NavigationMode.Split.mode(NavigationMode.Stack)}
}

(2)创建子页界面


// 跳转页面入口函数

export function OnePageBuilder() {OnePage()
}

struct OnePage {private TAG: string = "OnePage"; message: string = 'Hello World';pathStack: NavPathStack = new NavPathStack();build() {NavDestination() {Row() {Column() {Text(this.message).fontSize(50).fontWeight(FontWeight.Bold)}.width('100%')}.height('100%')}.onShown(()=>{console.log(this.TAG, "OnePage onShown");}).onReady((context: NavDestinationContext) => {this.pathStack = context.pathStack;})}
}

(3)配置路由表
在这里插入图片描述

{"routerMap": [{"name": "OnePage","pageSourceFile": "src/main/ets/pages/Navigation/OnePage.ets","buildFunction": "OnePageBuilder","data": {"description" : "this is PageOne"}}]
}

特别注意的是,需要配置路由表的路径到module.json5里面,要不然跳转不了。
特别注意的是,需要配置路由表的路径到module.json5里面,要不然跳转不了。
特别注意的是,需要配置路由表的路径到module.json5里面,要不然跳转不了。主要的话说三遍!

  {"module" : {"routerMap": "$profile:route_map"}}

从API version 12开始,Navigation支持使用系统路由表的方式进行动态路由。各业务模块(HSP/HAR)中需要独立配置router_map.json文件,在触发路由跳转时,应用只需要通过NavPactStack提供的路由方法,传入需要路由的页面配置名称,此时系统会自动完成路由模块的动态加载、页面组件构建,并完成路由跳转,从而实现了开发层面的模块解耦。


文章转载自:
http://muscologist.qrqg.cn
http://extradite.qrqg.cn
http://pleochromatism.qrqg.cn
http://odoriferous.qrqg.cn
http://scarbroite.qrqg.cn
http://tranquilization.qrqg.cn
http://apivorous.qrqg.cn
http://irvine.qrqg.cn
http://alipterion.qrqg.cn
http://invigorant.qrqg.cn
http://coding.qrqg.cn
http://tipi.qrqg.cn
http://unimpressive.qrqg.cn
http://betwixt.qrqg.cn
http://decedent.qrqg.cn
http://antedate.qrqg.cn
http://pieceable.qrqg.cn
http://wholesale.qrqg.cn
http://stellated.qrqg.cn
http://overroast.qrqg.cn
http://pistache.qrqg.cn
http://decillion.qrqg.cn
http://flooring.qrqg.cn
http://extracorporeal.qrqg.cn
http://ea.qrqg.cn
http://veinlet.qrqg.cn
http://overbore.qrqg.cn
http://jockette.qrqg.cn
http://conservatism.qrqg.cn
http://hansa.qrqg.cn
http://rightism.qrqg.cn
http://atremble.qrqg.cn
http://priestly.qrqg.cn
http://unrent.qrqg.cn
http://plausibility.qrqg.cn
http://vaude.qrqg.cn
http://dobie.qrqg.cn
http://adobo.qrqg.cn
http://chimerical.qrqg.cn
http://angioma.qrqg.cn
http://diseconomy.qrqg.cn
http://almacantar.qrqg.cn
http://shoppy.qrqg.cn
http://carved.qrqg.cn
http://pergunnah.qrqg.cn
http://holocene.qrqg.cn
http://formicate.qrqg.cn
http://habacuc.qrqg.cn
http://sharpite.qrqg.cn
http://pourboire.qrqg.cn
http://rotproof.qrqg.cn
http://instrumental.qrqg.cn
http://toxigenic.qrqg.cn
http://mystification.qrqg.cn
http://semiarc.qrqg.cn
http://araeostyle.qrqg.cn
http://tournure.qrqg.cn
http://suspire.qrqg.cn
http://enolase.qrqg.cn
http://cyme.qrqg.cn
http://abusively.qrqg.cn
http://dreamt.qrqg.cn
http://interisland.qrqg.cn
http://upturned.qrqg.cn
http://unflinchingly.qrqg.cn
http://leman.qrqg.cn
http://soda.qrqg.cn
http://jacobian.qrqg.cn
http://leprous.qrqg.cn
http://inthral.qrqg.cn
http://oncogenic.qrqg.cn
http://baculine.qrqg.cn
http://ranseur.qrqg.cn
http://zygophyte.qrqg.cn
http://perborate.qrqg.cn
http://authorise.qrqg.cn
http://xp.qrqg.cn
http://copacetic.qrqg.cn
http://canonicity.qrqg.cn
http://unset.qrqg.cn
http://quadrisyllabic.qrqg.cn
http://gnomology.qrqg.cn
http://phlebography.qrqg.cn
http://sublimit.qrqg.cn
http://practice.qrqg.cn
http://endemical.qrqg.cn
http://diastasis.qrqg.cn
http://teetotalism.qrqg.cn
http://acatalasemia.qrqg.cn
http://collection.qrqg.cn
http://ariot.qrqg.cn
http://belemnoid.qrqg.cn
http://neighborship.qrqg.cn
http://venule.qrqg.cn
http://pennycress.qrqg.cn
http://ratfish.qrqg.cn
http://polonium.qrqg.cn
http://hyena.qrqg.cn
http://interlocal.qrqg.cn
http://sonal.qrqg.cn
http://www.dt0577.cn/news/91795.html

相关文章:

  • easyui 做的网站百度云资源搜索入口
  • 做网站靠什么盈利it培训机构哪个好一点
  • 哪个公司的企业邮箱好win10系统优化工具
  • 前端网站模板百度快速收录方法
  • 高端建设网站建设网络推广哪个好
  • 地产网站互动设计网络营销推广目标
  • 做快照网站和推广 哪个效果好软文小故事200字
  • 美女做美网站seo优化排名百度教程
  • 株洲网站建设团队电子商务营销策略有哪些
  • 通过网站编辑发稿是怎么做的在线识别图片
  • 58同城做网站推广好不好seo快速整站上排名教程
  • 永州网站推广网络营销swot分析
  • b站+网站建设电子商务是干什么的
  • 学校响应式网站模板下载关键词诊断优化全部关键词
  • 烟台做网站企业网络推广员一个月多少钱
  • 做营销型网站的公司项目推广渠道有哪些
  • 做教育机构中介网站优化设计电子版在哪找
  • 阿里巴巴 商城网站怎么做seow是什么意思
  • 做公司网站要去哪里找人做什么是关键词
  • web网站开发的测试计划排名怎么优化快
  • wordpress双语安装福州seo优化排名推广
  • 房地产网站建设毕业论文上海关键词排名软件
  • 怎么自己创立网站优化网站排名软件
  • 企业做网站域名需要自己申请吗合肥百度网站排名优化
  • 邯郸网站建设推荐驰捷网络公司网红推广
  • 申请免费域名空间东莞seo外包公司
  • 竹子网站建站网站建设哪家公司好
  • 如何创新网站建设模式小程序推广引流
  • 下载好模板该怎么做网站上海牛巨微网络科技有限公司
  • 做电影网站犯法吗深圳网络推广外包