赞
踩
先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新HarmonyOS鸿蒙全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上鸿蒙开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip204888 (备注鸿蒙)
Text(this.goodsItem.content)
.fontSize(14)
Text(‘¥’ + this.goodsItem.price)
.fontSize(18)
.fontColor(Color.Red)
}
.height(130)
.width(‘60%’)
.margin({ left: 20 })
.alignItems(HorizontalAlign.Start)
Image(this.goodsItem.imgSrc)
.objectFit(ImageFit.ScaleDown)
.height(130)
.width(‘30%’)
.renderMode(ImageRenderMode.Original)
.margin({ right: 10, left: 10 })
}
.backgroundColor(Color.White)
}
.params({ goodsData: this.goodsItem })
.margin({ right: 5 })
}
}
import { GoodsData, IconImage } from ‘…/model/GoodsData’
import { initializeOnStartup, getIconPath, getIconPathSelect } from ‘…/model/GoodsDataModels’
import { ShoppingCart } from ‘./ShoppingCartPage.ets’
import { MyInfo } from ‘./MyPage.ets’
import router from ‘@system.router’;
@Entry
@Component
struct Index {
@Provide currentPage: number = 1
private goodsItems: GoodsData[] = initializeOnStartup()
@State Build: Array = [
{
icon: $r(‘app.media.icon_home’),
icon_after: $r(‘app.media.icon_buy1’),
text: ‘首页’,
num: 0
},
{
icon: $r(‘app.media.icon_shopping_cart’),
icon_after: $r(‘app.media.icon_shopping_cart_select’),
text: ‘购物车’,
num: 1
},
{
icon: $r(‘app.media.icon_my’),
icon_after: $r(‘app.media.icon_my_select’),
text: ‘我的’,
num: 2
}
]
@Builder NavigationToolbar() {
Flex({direction:FlexDirection.Row,wrap:FlexWrap.NoWrap,justifyContent:FlexAlign.SpaceAround}) {
ForEach(this.Build, item => {
Column() {
Image(this.currentPage == item.num ? item.icon_after : item.icon)
.width(25)
.height(25)
Text(item.text)
.fontColor(this.currentPage == item.num ? “#ff7500” : “#000000”)
}
.onClick(() => {
this.currentPage = item.num
})
})
}
}
build() {
Column() {
Navigation() {
Flex() {
if (this.currentPage == 0) {
GoodsHome({ goodsItems: this.goodsItems })
}
if (this.currentPage == 1) {
ShoppingCart() //购物车列表
}
if (this.currentPage == 2) {
MyInfo() //我的
}
}
.width(‘100%’)
.height(‘100%’)
}
.toolBar(this.NavigationToolbar)
.title(“购物车”)
.hideTitleBar(this.currentPage == 1 ? false : true)
.hideBackButton(true)
}
}
}
从入口组件的代码中可以看出,我们定义了一个全局变量currentPage ,当currentPage发生变化的时候,会显示不同的页签。在入口组件中,通initializeOnStartup获取商品列表数据(goodsItems)并传入GoodsHome组件中。效果图如下:
从上面效果图可以看出,主界面购物车页签主要由下面三部分组成:
在本任务中我们主要是构建一个购物车页签,给商品列表的每个商品设置一个单选框,可以选中与取消选中,底部Total值也会随之增加或减少,点击Check Out时会触发弹窗。下面我们来完成ShoppingCart页签。
import {GoodsData} from ‘…/model/GoodsData’
import {initializeOnStartup} from ‘…/model/GoodsDataModels’
import prompt from ‘@system.prompt’;
@Entry
@Component
export struct ShoppingCart {
@Provide totalPrice: number = 0
private goodsItems: GoodsData[] = initializeOnStartup()
build() {
Column() {
ShopCartList({ goodsItems: this.goodsItems });
ShopCartBottom()
}
.height(‘100%’)
.width(‘100%’)
.alignItems(HorizontalAlign.Start)
}
}
代码如下:
@Component
struct ShopCartList {
private goodsItems: GoodsData[]
build() {
Column() {
List() {
ForEach(this.goodsItems, item => {
ListItem() {
ShopCartListItem({ goodsItem: item })
}
}, item => item.id.toString())
}
.height(‘100%’)
.width(‘100%’)
.align(Alignment.Top)
.margin({ top: 5 })
}
.height(‘90%’)
}
}
在ShopCartListItem中使用Toggle的单选框类型来实现每个item的选择和取消选择,在Toggle的onChage事件中来改变totalPrice的数值。ShopCartListItem组件效果图如下:
代码如下:
@Component
struct ShopCartListItem {
@Consume totalPrice: number
private goodsItem: GoodsData
build() {
Row() {
Toggle({ type: ToggleType.Checkbox })
.width(13)
.height(13)
.onChange((isOn: boolean) => {
if (isOn) {
this.totalPrice += parseInt(this.goodsItem.price + ‘’, 0)
} else {
this.totalPrice -= parseInt(this.goodsItem.price + ‘’, 0)
}
})
Image(this.goodsItem.imgSrc)
.objectFit(ImageFit.ScaleDown)
.height(130)
.width(100)
.renderMode(ImageRenderMode.Original)
Column() {
Text(this.goodsItem.title)
.fontSize(18)
Text(‘¥’ + this.goodsItem.price)
.fontSize(18)
.fontColor(Color.Red)
}
.margin({left:40})
}
.height(100)
.width(‘100%’)
.margin({ left: 20 })
.alignItems(VerticalAlign.Center)
.backgroundColor(Color.White)
}
}
代码如下:
@Component
struct ShopCartBottom {
@Consume totalPrice: number
build() {
Row() {
Text(‘Total: ¥’ + this.totalPrice)
.fontColor(Color.Red)
.fontSize(18)
.margin({ left: 20 })
.width(150)
Text(‘Check Out’)
.fontColor(Color.Black)
.fontSize(18)
.margin({ right: 20, left: 180 })
.onClick(() => {
prompt.showToast({
message: ‘Checking Out’,
duration: 10,
bottom: 100
})
})
}
.height(30)
.width(‘100%’)
.backgroundColor(‘#FF7FFFD4’)
.alignItems(VerticalAlign.Bottom)
}
}
从上面效果图可以看出,主界面我的页签主要由下面四部分组成:
在本任务中,我们构建主页我的页签,主要可以划分成下面几步:
import {getMenu,getTrans,getMore} from ‘…/model/GoodsDataModels’
import {Menu, ImageItem} from ‘…/model/Menu’
@Entry
@Component
export struct MyInfo {
build() {
Column() {
Row() {
Image($r(‘app.media.icon_user’))
.objectFit(ImageFit.Contain)
.height(50)
.width(50)
.margin({left:10})
.renderMode(ImageRenderMode.Original)
Column() {
Text(‘John Doe’)
.fontSize(15)
Text(‘Member Name : John Doe >’)
.fontSize(15)
}
.height(60)
.margin({ left: 20, top: 10 })
.alignItems(HorizontalAlign.Start)
}
TopList()
MyTransList()
MoreGrid()
}
.alignItems(HorizontalAlign.Start)
.width(‘100%’)
.height(‘100%’)
.flexGrow(1)
}
}
入口组件中还包含TopList,MyTransList和MoreGrid三个子组件。
3. 在MyPage.ets文件中新建TopList组件,效果图如下:
代码如下:
@Component
struct TopList {
private menus: Menu1[] = getMenu()
build() {
Row() {
List() {
ForEach(this.menus, item => {
ListItem() {
MenuItem({ menu: item })
}
}, item => item.id.toString())
}
.height(‘100%’)
.width(‘100%’)
.margin({ top: 5,left: 10})
.edgeEffect(EdgeEffect.None)
.listDirection(Axis.Horizontal)
}
.width(‘100%’)
.height(50)
}
}
getMenu()方法在上文中已有定义,是获取菜单列表的方法,TopList的子组件MenuItem内容如下:
@Component
struct MenuItem {
private menu: Menu1
build() {
Column() {
Text(this.menu.title)
.fontSize(15)
Text(this.menu.num + ‘’)
.fontSize(13)
}
.height(50)
.width(100)
.margin({ left: 8, right: 8 })
.alignItems(HorizontalAlign.Start)
.backgroundColor(Color.White)
}
}
代码如下:
@Component
struct MyTransList {
private imageItems: ImageItem[] = getTrans()
build() {
Column() {
Text(‘My Transaction’)
.fontSize(20)
.margin({ left: 10 })
.width(‘100%’)
.height(30)
Row() {
List() {
ForEach(this.imageItems, item => {
ListItem() {
DataItem({ imageItem: item })
}
}, item => item.id.toString())
}
.height(70)
.width(‘100%’)
.edgeEffect(EdgeEffect.None)
.margin({ top: 5 })
.padding({ left: 16, right: 16 })
.listDirection(Axis.Horizontal)
}
}
.height(120)
}
}
MoreGrid组件效果图如下:
代码如下:
@Component
struct MoreGrid {
private gridRowTemplate: string = ‘’
private imageItems: ImageItem[] = getMore()
private heightValue: number
aboutToAppear() {
var rows = Math.round(this.imageItems.length / 3);
this.gridRowTemplate = '1fr '.repeat(rows);
this.heightValue = rows * 75;
}
build() {
Column() {
Text(‘More’)
.fontSize(20)
.margin({ left: 10 })
.width(‘100%’)
.height(30)
Scroll() {
Grid() {
ForEach(this.imageItems, (item: ImageItem) => {
GridItem() {
DataItem({ imageItem: item })
}
}, (item: ImageItem) => item.id.toString())
}
.rowsTemplate(this.gridRowTemplate)
.columnsTemplate(‘1fr 1fr 1fr’)
.columnsGap(8)
.rowsGap(8)
.height(this.heightValue)
}
.padding({ left: 16, right: 16 })
}
.height(400)
}
}
在MyTransList和MoreGrid组件中都包含子组件DataItem,为避免的重复代码,可以把多次要用到的结构体组件化,这里的结构体就是图片加上文本的上下结构体,DataItem组件内容如下:
@Component
struct DataItem {
private imageItem: ImageItem
build() {
Column() {
Image(this.imageItem.imageSrc)
.objectFit(ImageFit.Contain)
.height(50)
.width(50)
.renderMode(ImageRenderMode.Original)
Text(this.imageItem.title)
.fontSize(15)
}
.height(70)
.width(150)
.margin({ left: 10, right: 10 })
.backgroundColor(Color.White)
}
}
从上面效果图可以看出,商品详情页面主要由下面五部分组成:
在本任务中,把上面每一部分都封装成一个组件,然后再放到入口组件内,当点击顶部返回图标时返回到主页面的商品列表页签,点击底部Buy时,会触发进度条弹窗
@Entry
@Component
struct ShoppingDetail {
private arsItems: ArsData[] = getArs()
build() {
Column() {
DetailTop()
Scroll() {
Column() {
SwiperTop()
DetailText()
DetailArsList({ arsItems: this.arsItems })
Image(
r
(
′
a
p
p
.
m
e
d
i
a
.
c
o
m
p
u
t
e
r
1
′
)
)
.
h
e
i
g
h
t
(
220
)
.
w
i
d
t
h
(
′
100.
m
a
r
g
i
n
(
t
o
p
:
30
)
I
m
a
g
e
(
r('app.media.computer1')) .height(220) .width('100%') .margin({ top: 30 }) Image(
r(′app.media.computer1′)).height(220).width(′100.margin(top:30)Image(r(‘app.media.computer2’))
.height(220)
.width(‘100%’)
.margin({ top: 30 })
Image(
r
(
′
a
p
p
.
m
e
d
i
a
.
c
o
m
p
u
t
e
r
3
′
)
)
.
h
e
i
g
h
t
(
220
)
.
w
i
d
t
h
(
′
100.
m
a
r
g
i
n
(
t
o
p
:
30
)
I
m
a
g
e
(
r('app.media.computer3')) .height(220) .width('100%') .margin({ top: 30 }) Image(
r(′app.media.computer3′)).height(220).width(′100.margin(top:30)Image(r(‘app.media.computer4’))
.height(220)
.width(‘100%’)
.margin({ top: 30 })
Image(
r
(
′
a
p
p
.
m
e
d
i
a
.
c
o
m
p
u
t
e
r
5
′
)
)
.
h
e
i
g
h
t
(
220
)
.
w
i
d
t
h
(
′
100.
m
a
r
g
i
n
(
t
o
p
:
30
)
I
m
a
g
e
(
r('app.media.computer5')) .height(220) .width('100%') .margin({ top: 30 }) Image(
r(′app.media.computer5′)).height(220).width(′100.margin(top:30)Image(r(‘app.media.computer6’))
.height(220)
.width(‘100%’)
.margin({ top: 30 })
}
.width(‘100%’)
.flexGrow(1)
}
.scrollable(ScrollDirection.Vertical)
DetailBottom()
}
.height(‘90%’)
.width(‘100%’)
}
}
其中顶部DetailTop组件效果图如下:
代码如下:
@Component
struct DetailTop {
build() {
Column() {
Row() {
Image($r(‘app.media.icon_return’))
.height(40)
.width(40)
.margin({left: 20})
.onClick(() => {
router.push({
uri: “pages/HomePage”
})
})
}
.width(‘100%’)
.height(35)
.backgroundColor(‘#FF87CEEB’)
}
.width(‘100%’)
.height(40)
}
}
代码如下:
@Component
struct SwiperTop {
build() {
Column() {
Swiper() {
Image(
r
(
′
a
p
p
.
m
e
d
i
a
.
c
o
m
p
u
t
e
r
1
′
)
)
.
h
e
i
g
h
t
(
220
)
.
w
i
d
t
h
(
′
100
I
m
a
g
e
(
r('app.media.computer1')) .height(220) .width('100%') Image(
r(′app.media.computer1′)).height(220).width(′100Image(r(‘app.media.computer2’))
.height(220)
.width(‘100%’)
Image(
r
(
′
a
p
p
.
m
e
d
i
a
.
c
o
m
p
u
t
e
r
3
′
)
)
.
h
e
i
g
h
t
(
220
)
.
w
i
d
t
h
(
′
100
I
m
a
g
e
(
r('app.media.computer3')) .height(220) .width('100%') Image(
r(′app.media.computer3′)).height(220).width(′100Image(r(‘app.media.computer4’))
.height(220)
.width(‘100%’)
Image(
r
(
′
a
p
p
.
m
e
d
i
a
.
c
o
m
p
u
t
e
r
5
′
)
)
.
h
e
i
g
h
t
(
220
)
.
w
i
d
t
h
(
′
100
I
m
a
g
e
(
r('app.media.computer5')) .height(220) .width('100%') Image(
r(′app.media.computer5′)).height(220).width(′100Image(r(‘app.media.computer6’))
.height(220)
.width(‘100%’)
}
.index(0)
.autoPlay(true)
.interval(3000)
.indicator(true)
.loop(true)
.height(250)
.width(‘100%’)
}
.height(250)
.width(‘100%’)
}
}
代码如下:
@Component
struct DetailText {
build() {
Column() {
Row() {
Image($r(‘app.media.icon_promotion’))
.objectFit(ImageFit.Contain)
.height(30)
.width(30)
.margin({ left: 10 })
Text(‘Special Offer: ¥9999’)
.fontColor(Color.White)
.fontSize(20)
.margin({ left: 10 })
}
.width(‘100%’)
.height(35)
.backgroundColor(Color.Red)
Column() {
Text(‘New Arrival: HUAWEI MateBook X Pro 2021’)
.fontSize(18)
.margin({ left: 10 })
.alignSelf(ItemAlign.Start)
Text(‘13.9-Inch, 11th Gen Intel® Core™ i7, 16 GB of Memory, 512 GB of Storage, Ultra-slim Business Laptop, 3K FullView Display, Multi-screen
Collaboration, Emerald Green’)
.fontSize(14)
.margin({ left: 10 })
Row() {
Image($r(‘app.media.icon_buy’))
.objectFit(ImageFit.Contain)
.height(30)
.width(30)
.margin({ left: 10 })
Text(‘Limited offer’)
.fontSize(15)
.fontColor(Color.Red)
.margin({ left: 100 })
}
.backgroundColor(Color.Pink)
.width(‘100%’)
.height(45)
.margin({ top: 10 })
Text(’ Shipment: 2-day shipping’)
.fontSize(13)
.fontColor(Color.Red)
.margin({ left: 10, top: 5 })
.alignSelf(ItemAlign.Start)
Text(’ Ship To: Hubei,Wuhan,China’)
.fontSize(13)
.fontColor(Color.Red)
.margin({ left: 10, top: 5 })
.alignSelf(ItemAlign.Start)
.onClick(() => {
prompt.showDialog({ title: ‘select address’, })
})
Text(‘Guarantee: Genuine guaranteed’)
.fontSize(13)
.margin({ left: 10, top: 5 })
.alignSelf(ItemAlign.Start)
}
.height(170)
.width(‘100%’)
}
.height(180)
.width(‘100%’)
}
}
DetailArsList组件效果图如下:
代码如下:
@Component
struct DetailArsList{
private arsItems: ArsData[]
build() {
Scroll() {
Column() {
List() {
ForEach(this.arsItems, item => {
ListItem() {
ArsListItem({ arsItem: item })
}
}, item => item.id.toString())
}
.height(‘100%’)
.width(‘100%’)
.margin({ top: 5 })
.listDirection(Axis.Vertical)
}
.height(200)
}
}
}
ArsListItem组件代码如下:
@Component
struct ArsListItem {
private arsItem: ArsData
build() {
Row() {
Text(this.arsItem.title + "
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。