当前位置:   article > 正文

arkTS开发鸿蒙OS个人商城案例【2024最新 新年限定开发案例QAQ】_arkts案例

arkts案例

龙年前述

源码获取>文章下方二维码,回复关键字“鸿蒙OS商场源码”

前言

arkTS是华为自己研发的一套前端语言,是在js和ts技术的基础上又进行了升级而成!

本篇文章会带领大家通过arkTS+node.js+mongoDB来完成一个鸿蒙OS版本的商城案例!

技术栈

1.arkTS

2.node.js

3.arkTS UI

4.express

5.mongoDB

技术栈讲解

arkTS

ArkTS是HarmonyOS应用开发语言。它在保持TypeScript(简称TS)基本语法风格的基础上,对TS的动态类型特性施加更严格的约束,引入静态类型。同时,提供了声明式UI、状态管理等相应的能力,让开发者可以以更简洁、更自然的方式开发高性能应用。

面向万物互联时代,华为提出一次开发多端部署、可分可合自由流转、统一生态原生智能三大应用与服务开发理念,针对多设备、多入口、服务可分可合等特性,提供多种能力协助开发者降低开发门槛,同时HarmonyOS与OpenHarmony统一生态。HarmonyOS基于JS/TS语言体系,构建了全新的声明式开发语言ArkTS。除了兼容JS/TS语言生态,ArkTS扩展了声明式UI语法和轻量化并发机制。

ArkTS是HarmonyOS主力应用开发语言。为便于熟悉Web前端的开发者快速上手,HarmonyOS在UI开发框架中,还提供了“兼容JS的类Web开发范式”。它通过模板、样式、逻辑三段式来构建相应的应用UI界面,并结合相应的运行时实现了优化的运行体验。

基本语法

装饰器: 用于装饰类、结构、方法以及变量,并赋予其特殊的含义。如上述示例中@Entry、@Component和@State都是装饰器,@Component表示自定义组件,@Entry表示该自定义组件为入口组件,@State表示组件中的状态变量,状态变量变化会触发UI刷新。

UI描述:以声明式的方式来描述UI的结构,例如build方法中的代码块。

自定义组件:可复用的UI单元,可组合其他组件,如上述被@Component装饰的struct Hello。

系统组件:ArkUI框架中默认内置的基础和容器组件,可直接被开发者调用,比如示例中的Column、Text、Divider、Button。

属性方法:组件可以通过链式调用配置多项属性,如fontSize、width、height、backgroundColor等。

事件方法:组件可以通过链式调用设置多个事件的响应逻辑,如跟随在Button后面的onClick。 [4]

声明式UI

创建组件

配置属性

配置事件

配置子组件 [5]

状态管理

状态变量:被状态装饰器装饰的变量,改变会引起UI的渲染更新。

常规变量:没有状态的变量,通常应用于辅助计算。它的改变永远不会引起UI的刷新。

数据源/同步源:状态变量的原始来源,可以同步给不同的状态数据。通常意义为父组件传给子组件的数据。

命名参数机制:父组件通过指定参数传递给子组件的状态变量,为父子传递同步参数的主要手段。示例:CompA: ({ aProp: this.aProp })。

从父组件初始化:父组件使用命名参数机制,将指定参数传递给子组件。本地初始化的默认值在有父组件传值的情况下,会被覆盖。

初始化子节点:组件中状态变量可以传递给子组件,初始化子组件对应的状态变量。示例同上。

本地初始化:变量声明的时候赋值,作为初始化的默认值。示例:@State count: number = 0。 [6]

渲染控制

ArkUI通过自定义组件的build函数和@builder装饰器中的声明式UI描述语句构建相应的UI。在声明式描述语句中开发者除了使用系统组件外,还可以使用渲染控制语句来辅助UI的构建,这些渲染控制语句包括控制组件是否显示的条件渲染语句,基于数组数据快速生成组件的循环渲染语句以及针对大数据量场景的数据懒加载语句

node.js

Node.js发布于2009年5月,由Ryan Dahl开发,是一个基于Chrome V8引擎的JavaScript运行环境,使用了一个事件驱动、非阻塞式I/O模型, [1]让JavaScript 运行在服务端开发平台,它让JavaScript成为与PHPPythonPerlRuby等服务端语言平起平坐的脚本语言

Node.js对一些特殊用例进行优化,提供替代的API,使得V8在非浏览器环境下运行得更好,V8引擎执行Javascript的速度非常快,性能非常好,基于Chrome JavaScript运行时建立的平台, 用于方便地搭建响应速度快、易于扩展的网络应用

2009年2月,Ryan Dahl在博客上宣布准备基于V8创建一个轻量级的Web服务器并提供一套库。

2009年5月,Ryan Dahl在GitHub上发布了最初版本的部分Node包,随后几个月里,有人开始使用Node开发应用。

2009年11月和2010年4月,两届JSConf大会都安排了Node.js的讲座。

2010年年底,Node获得云计算服务商Joyent资助,创始人Ryan Dahl加入Joyent全职负责Node的发展。

2011年7月,Node在微软的支持下发布Windows版本。

2016年,leftpad事件,Yarn诞生

2021年,发布最新版本Node.js 17 [3]

V8引擎本身使用了一些最新的编译技术。这使得用Javascript这类脚本语言编写出来的代码运行速度获得了极大提升,又节省了开发成本。对性能的苛求是Node的一个关键因素。 Javascript是一个事件驱动语言,Node利用了这个优点,编写出可扩展性高的服务器。Node采用了一个称为“事件循环(event loop)”的架构,使得编写可扩展性高的服务器变得既容易又安全。提高服务器性能的技巧有多种多样。Node选择了一种既能提高性能,又能减低开发复杂度的架构。这是一个非常重要的特性。并发编程通常很复杂且布满地雷。Node绕过了这些,但仍提供很好的性能。

Node采用一系列“非阻塞”库来支持事件循环的方式。本质上就是为文件系统、数据库之类的资源提供接口。向文件系统发送一个请求时,无需等待硬盘(寻址并检索文件),硬盘准备好的时候非阻塞接口会通知Node。该模型以可扩展的方式简化了对慢资源的访问, 直观,易懂。尤其是对于熟悉onmouseoveronclickDOM事件的用户,更有一种似曾相识的感觉。

虽然让Javascript运行于服务器端不是Node的独特之处,但却是其一强大功能。不得不承认,浏览器环境限制了我们选择编程语言的自由。任何服务器与日益复杂的浏览器客户端应用程序间共享代码的愿望只能通过Javascript来实现。虽然还存在其他一些支持Javascript在服务器端 运行的平台,但因为上述特性,Node发展迅猛,成为事实上的平台。

在Node启动的很短时间内,社区就已经贡献了大量的扩展库(模块)。其中很多是连接数据库或是其他软件的驱动,但还有很多是凭他们的实力制作出来的非常有用的软件。

最后,不得不提到的是Node社区。虽然Node项目还非常年轻,但很少看到对一个项目如此狂热的社区。不管是新手,还是专家,大家都围绕着项目,使用并贡献自己的能力,致力于打造一个探索、支持、分享、听取建议的乐土。

具备书写JavaScriptIDE,普通的记事本也可以进行开发。在几年的时间里,Node.JS逐渐发展成一个成熟的开发平台,吸引了许多开发者。有许多大型高流量网站都采用Node.JS进行开发,此外,开发人员还可以使用它来开发一些快速移动Web框架。

除了Web应用外,NodeJS也被应用在许多方面,本文盘点了NodeJS在其它方面所开发的十大令人神奇的项目,这些项目涉及到应用程序监控、媒体流、远程控制、桌面和移动应用等等。

效果图

鸿蒙端项目架构

shouye.ets

  1. import axios from '@ohos/axios'
  2. import router from '@ohos.router'
  3. @Component
  4. export struct app_shouye{
  5. @State zhanghao: object = router.getParams()
  6. // 设置搜索框的提示内容
  7. private changeValue:string = ''
  8. @State selectedItemId : number = 0
  9. @State one:string = ''
  10. // 设置商品的渲染列表Object
  11. @State items: Array<Object> = [];
  12. aboutToAppear() {
  13. axios({
  14. method: "get",
  15. url: 'http://localhost:3000/shangpins/find_all',
  16. }).then(res => {
  17. console.info('result:' + JSON.stringify(res.data.data));
  18. this.items = res.data.data
  19. }).catch(error => {
  20. console.error(error);
  21. })
  22. console.log(JSON.stringify(this.items))
  23. }
  24. build(){
  25. Column(){
  26. // 搜索栏
  27. Search({ value: this.changeValue, placeholder: '请输入搜索的商品',})
  28. .searchButton('搜索')
  29. .width(300)
  30. .height(40)
  31. .backgroundColor('#F5F5F5')
  32. .placeholderColor(Color.Grey)
  33. .placeholderFont({ size: 14, weight: 400 })
  34. .textFont({ size: 14, weight: 400 })
  35. .onSubmit((value: string) => {
  36. router.pushUrl({
  37. url: 'pages/sousuo',
  38. params: {
  39. sousuoValue: this.changeValue,
  40. }
  41. })
  42. })
  43. .onChange((value: string) => {
  44. this.changeValue = value
  45. console.log(this.changeValue)
  46. })
  47. .margin(20)
  48. // 显示商品列表
  49. List({ space: 20, initialIndex: 0 }){
  50. ForEach(this.items, (item) => {
  51. ListItem() {
  52. Row(){
  53. Image(item.img)
  54. .alt($r('app.media.icon'))// 使用alt,在网络图片加载成功前使用占位图
  55. .width(150)
  56. .height(180)
  57. Column({space:10}){
  58. Text(item.name)
  59. .fontWeight(800)
  60. .margin(20)
  61. Text(item.detail)
  62. Text('¥:'+item.price)
  63. .fontColor('red')
  64. .fontWeight(FontWeight.Bold)
  65. .fontSize(20)
  66. }
  67. .width(180)
  68. }.alignItems(VerticalAlign.Top)
  69. }
  70. .onClick(() => {
  71. this.selectedItemId = item._id;
  72. // 获取点击物品的id
  73. this.one = item._id
  74. console.log(JSON.stringify(this.one))
  75. router.pushUrl({
  76. url: 'pages/detail',
  77. params: {
  78. id: this.one,
  79. zhanghao:this.zhanghao?.['zhanghao']
  80. }
  81. })
  82. })
  83. })
  84. }
  85. .height('90%')
  86. .listDirection(Axis.Vertical) // 排列方向
  87. .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 }) // 每行之间的分界线
  88. .edgeEffect(EdgeEffect.Spring) // 滑动到边缘无效果
  89. }
  90. .width('98%')
  91. .height('100%')
  92. }
  93. }

fenlei.ets

  1. import axios from '@ohos/axios'
  2. import router from '@ohos.router'
  3. @Component
  4. export struct app_shouye{
  5. @State zhanghao: object = router.getParams()
  6. // 设置搜索框的提示内容
  7. private changeValue:string = ''
  8. @State selectedItemId : number = 0
  9. @State one:string = ''
  10. // 设置商品的渲染列表Object
  11. @State items: Array<Object> = [];
  12. aboutToAppear() {
  13. axios({
  14. method: "get",
  15. url: 'http://localhost:3000/shangpins/find_all',
  16. }).then(res => {
  17. console.info('result:' + JSON.stringify(res.data.data));
  18. this.items = res.data.data
  19. }).catch(error => {
  20. console.error(error);
  21. })
  22. console.log(JSON.stringify(this.items))
  23. }
  24. build(){
  25. Column(){
  26. // 搜索栏
  27. Search({ value: this.changeValue, placeholder: '请输入搜索的商品',})
  28. .searchButton('搜索')
  29. .width(300)
  30. .height(40)
  31. .backgroundColor('#F5F5F5')
  32. .placeholderColor(Color.Grey)
  33. .placeholderFont({ size: 14, weight: 400 })
  34. .textFont({ size: 14, weight: 400 })
  35. .onSubmit((value: string) => {
  36. router.pushUrl({
  37. url: 'pages/sousuo',
  38. params: {
  39. sousuoValue: this.changeValue,
  40. }
  41. })
  42. })
  43. .onChange((value: string) => {
  44. this.changeValue = value
  45. console.log(this.changeValue)
  46. })
  47. .margin(20)
  48. // 显示商品列表
  49. List({ space: 20, initialIndex: 0 }){
  50. ForEach(this.items, (item) => {
  51. ListItem() {
  52. Row(){
  53. Image(item.img)
  54. .alt($r('app.media.icon'))// 使用alt,在网络图片加载成功前使用占位图
  55. .width(150)
  56. .height(180)
  57. Column({space:10}){
  58. Text(item.name)
  59. .fontWeight(800)
  60. .margin(20)
  61. Text(item.detail)
  62. Text('¥:'+item.price)
  63. .fontColor('red')
  64. .fontWeight(FontWeight.Bold)
  65. .fontSize(20)
  66. }
  67. .width(180)
  68. }.alignItems(VerticalAlign.Top)
  69. }
  70. .onClick(() => {
  71. this.selectedItemId = item._id;
  72. // 获取点击物品的id
  73. this.one = item._id
  74. console.log(JSON.stringify(this.one))
  75. router.pushUrl({
  76. url: 'pages/detail',
  77. params: {
  78. id: this.one,
  79. zhanghao:this.zhanghao?.['zhanghao']
  80. }
  81. })
  82. })
  83. })
  84. }
  85. .height('90%')
  86. .listDirection(Axis.Vertical) // 排列方向
  87. .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 }) // 每行之间的分界线
  88. .edgeEffect(EdgeEffect.Spring) // 滑动到边缘无效果
  89. }
  90. .width('98%')
  91. .height('100%')
  92. }
  93. }

gouwuche.ets

  1. import router from '@ohos.router'
  2. import axios from '@ohos/axios'
  3. import { Header } from '../components/Toubu'
  4. @Component
  5. export struct gouwuche{
  6. @State zhanghao: object = router.getParams()
  7. // 设置商品的渲染列表Object
  8. @State items: Array<Object> = [];
  9. aboutToAppear() {
  10. axios({
  11. method: "post",
  12. url: 'http://localhost:3000/gouwuche/find',
  13. data:{
  14. username:this.zhanghao?.['zhanghao']
  15. }
  16. }).then(res => {
  17. console.info('result1111:' + JSON.stringify(res.data.data));
  18. this.items = res.data.data
  19. }).catch(error => {
  20. console.error(error);
  21. })
  22. console.log(JSON.stringify(this.items))
  23. }
  24. build(){
  25. // 标题部分
  26. Column(){
  27. // 自定义组件之间传参
  28. // Header({message:true})
  29. Image($r('app.media.shuaxin'))
  30. .width(30)
  31. .margin(20)
  32. .onClick(() =>{
  33. axios({
  34. method: "post",
  35. url: 'http://localhost:3000/gouwuche/find',
  36. data:{
  37. username:this.zhanghao?.['zhanghao']
  38. }
  39. }).then(res => {
  40. console.info('result1111:' + JSON.stringify(res.data.data));
  41. this.items = res.data.data
  42. }).catch(error => {
  43. console.error(error);
  44. })
  45. })
  46. // Text(this.zhanghao?.['zhanghao'])
  47. List({ space: 20, initialIndex: 0 }){
  48. ForEach(this.items, (item) => {
  49. ListItem() {
  50. Row(){
  51. Image(item.img)
  52. .alt($r('app.media.icon'))// 使用alt,在网络图片加载成功前使用占位图
  53. .width(150)
  54. .height(180)
  55. Column({space:10}){
  56. Text(item.name)
  57. .fontWeight(800)
  58. .margin(20)
  59. Text(item.detail)
  60. Text('¥:'+item.price)
  61. .fontColor('red')
  62. .fontWeight(FontWeight.Bold)
  63. .fontSize(20)
  64. }
  65. .width(180)
  66. }.alignItems(VerticalAlign.Top)
  67. }
  68. })
  69. }
  70. .height('85%')
  71. .listDirection(Axis.Vertical) // 排列方向
  72. .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 }) // 每行之间的分界线
  73. .edgeEffect(EdgeEffect.Spring) // 滑动到边缘无效果
  74. Row({space:30}){
  75. Button('清除购物车', { type: ButtonType.Normal, stateEffect: true })
  76. .borderRadius(8)
  77. .backgroundColor(0x317aff)
  78. .width(150)
  79. .onClick(() => {
  80. console.log('ButtonType.Normal')
  81. })
  82. Button('立即付款', { type: ButtonType.Normal, stateEffect: true })
  83. .borderRadius(8)
  84. .backgroundColor(0x317aff)
  85. .width(150)
  86. .onClick(() => {
  87. console.log('ButtonType.Normal')
  88. })
  89. }
  90. }
  91. .width('100%')
  92. .height('100%')
  93. }
  94. }

Toubu.ets

  1. import router from '@ohos.router'
  2. @Component
  3. export struct Header{
  4. @State message: Boolean = false
  5. build(){
  6. // 标题部分
  7. Row({space:5}){
  8. Image($r('app.media.fanhui'))
  9. .width(20)
  10. .onClick(() =>{
  11. router.back()
  12. })
  13. Blank()
  14. Image($r('app.media.shuaxin'))
  15. .width(30)
  16. .onClick(() =>{
  17. router.back()
  18. })
  19. }
  20. .width('98%')
  21. .height(30)
  22. }
  23. }

wode.ets

  1. import router from '@ohos.router'
  2. @Component
  3. export struct app_wode{
  4. @State zhanghao: object = router.getParams()
  5. build(){
  6. // 标题部分
  7. Column(){
  8. Row(){
  9. Row({space:10}){
  10. Image($r('app.media.icon'))
  11. .width(50)
  12. .height(50)
  13. Text('昵称:'+ this.zhanghao?.['zhanghao'])
  14. .margin({left:20})
  15. .fontColor('#fff')
  16. }
  17. .margin({top:30,left:50})
  18. }
  19. .width('100%')
  20. .height(180)
  21. .backgroundImage('./components/img/app_wo_bj.jpg')
  22. .backgroundImageSize(ImageSize.Cover)
  23. Row({space:50}){
  24. Image($r('app.media.icon'))
  25. .width(50)
  26. .height(50)
  27. Text('购物记录')
  28. .fontSize(18)
  29. }
  30. .width('100%')
  31. .backgroundColor("#fff")
  32. .margin({top:20,bottom:20})
  33. .padding({left:20,right:20,top:10,bottom:10})
  34. .onClick(()=>{
  35. router.pushUrl({
  36. url: 'pages/GouwuJilu',
  37. })
  38. console.log('123')
  39. })
  40. Row({space:50}){
  41. Image($r('app.media.icon'))
  42. .width(50)
  43. .height(50)
  44. Text('修改信息')
  45. .fontSize(18)
  46. }
  47. .width('100%')
  48. .backgroundColor("#fff")
  49. .margin({bottom:20})
  50. .padding({left:20,right:20,top:10,bottom:10})
  51. .onClick(()=>{
  52. router.pushUrl({
  53. url: 'pages/XiugaiXinxi',
  54. })
  55. console.log('123')
  56. })
  57. Row({space:50}){
  58. Image($r('app.media.icon'))
  59. .width(50)
  60. .height(50)
  61. Text('退出登录')
  62. .fontSize(18)
  63. }
  64. .width('100%')
  65. .backgroundColor("#fff")
  66. .margin({bottom:20})
  67. .padding({left:20,right:20,top:10,bottom:10})
  68. .onClick(()=>{
  69. router.replace({
  70. url: 'pages/Index',
  71. })
  72. console.log('123')
  73. })
  74. }
  75. .alignItems(HorizontalAlign.Start)
  76. .width('100%')
  77. .height('100%')
  78. .backgroundColor('#f3f3f3')
  79. }
  80. }

detail.ets

  1. import { Header } from '../components/Toubu'
  2. import router from '@ohos.router'
  3. import axios from '@ohos/axios'
  4. @Entry
  5. @Component
  6. struct Detail {
  7. @State shangpin_detail: object = router.getParams()
  8. @State items:Array<Object> = []
  9. build() {
  10. Row() {
  11. Column() {
  12. Header()
  13. Text(this.shangpin_detail?.['zhanghao'])
  14. Text(this.items[0]?.['name'])
  15. Flex({ wrap: FlexWrap.NoWrap }) { // 子组件单行布局
  16. Text('').width('20%')
  17. List({ space: 20, initialIndex: 0 }) {
  18. ForEach(this.items, (item) => {
  19. ListItem() {
  20. Column() {
  21. Image(item.img)
  22. .alt($r('app.media.icon')) // 使用alt,在网络图片加载成功前使用占位图
  23. .width(300)
  24. .height(300)
  25. Text(item.name)
  26. .fontWeight(800)
  27. .margin(20)
  28. Text('¥:' + item.price)
  29. .fontColor('red')
  30. .fontWeight(FontWeight.Bold)
  31. .fontSize(20)
  32. Text(item.detail)
  33. }
  34. }
  35. })
  36. }
  37. .height('85%')
  38. .listDirection(Axis.Vertical) // 排列方向
  39. .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 }) // 每行之间的分界线
  40. .edgeEffect(EdgeEffect.Spring) // 滑动到边缘无效果
  41. Text('').width('20%')
  42. }
  43. // 加入购物车,立即购买
  44. Row({space:30}){
  45. Button('加入购物车', { type: ButtonType.Normal, stateEffect: true })
  46. .borderRadius(8)
  47. .backgroundColor(0x317aff)
  48. .width(150)
  49. .onClick(() => {
  50. axios({
  51. method: "post",
  52. url: 'http://localhost:3000/gouwuche/publish/',
  53. data: {
  54. username: this.shangpin_detail?.['zhanghao'],
  55. name:this.items[0]?.['name'],
  56. detail:this.items[0]?.['detail'],
  57. img:this.items[0]?.['img'],
  58. select_classify:this.items[0]?.['select_classify'],
  59. price:this.items[0]?.['price']
  60. }
  61. }).then(res => {
  62. console.log(JSON.stringify(res.data.data));
  63. this.items = res.data.data
  64. }).catch(error => {
  65. console.error(error);
  66. });
  67. console.log('ButtonType.Normal')
  68. })
  69. Button('立即购买', { type: ButtonType.Normal, stateEffect: true })
  70. .borderRadius(8)
  71. .backgroundColor(0x317aff)
  72. .width(150)
  73. .onClick(() => {
  74. console.log('ButtonType.Normal')
  75. })
  76. }
  77. }
  78. .width('100%')
  79. }.height('100%')
  80. }
  81. onPageShow(){
  82. axios({
  83. method: "post",
  84. url: 'http://localhost:3000/shangpins/find_detail/',
  85. data: {
  86. _id: this.shangpin_detail?.['id']
  87. }
  88. }).then(res => {
  89. console.log(JSON.stringify(res.data.data));
  90. this.items = res.data.data
  91. }).catch(error => {
  92. console.error(error);
  93. });
  94. }
  95. }

GouwuJilu.ets

  1. import { Header } from '../components/Toubu'
  2. @Entry
  3. @Component
  4. struct GouwuJilu {
  5. @State message: string = '购物记录'
  6. build() {
  7. Column() {
  8. Header()
  9. Text(this.message)
  10. .fontSize(50)
  11. .fontWeight(FontWeight.Bold)
  12. }
  13. .width('100%')
  14. .height('100%')
  15. }
  16. }

Index.ets

  1. import axios from '@ohos/axios'
  2. import router from '@ohos.router'
  3. @Entry
  4. @Component
  5. struct Index {
  6. // 上传数据
  7. @State zhanghao: string = ''
  8. @State mima: string = ''
  9. @State zhanghao_find:string =''
  10. @State mima_find:string =''
  11. build() {
  12. Column() {
  13. Text('龙年千帆启鸿蒙')
  14. .margin({top:70})
  15. .fontWeight(FontWeight.Bold)
  16. .fontSize(30)
  17. Image($r('app.media.icon'))
  18. .width(150)
  19. .margin({top:50,bottom:20})
  20. // 账号登录
  21. TextInput({placeholder:'账号'})
  22. .margin(20)
  23. .height(50)
  24. .onChange(value =>{
  25. console.log(value)
  26. this.zhanghao_find = value
  27. })
  28. .backgroundColor('#36D2')
  29. TextInput({placeholder:'密码'})
  30. .margin({left:20,right:20,bottom:25})
  31. .height(50)
  32. .onChange(value =>{
  33. console.log(value)
  34. this.mima_find = value
  35. })
  36. .backgroundColor('#36D2')
  37. Button('登录')
  38. .width(200)
  39. .onClick(()=>{
  40. axios({
  41. method: "get",
  42. url: 'http://localhost:3000/users/find/'+this.zhanghao_find+ '/' + this.mima_find,
  43. }).then(res => {
  44. // console.info('result:' + JSON.stringify(res.data));
  45. console.info('result:' + JSON.stringify(res.data));
  46. // 获取data数组中的第一个元素
  47. const firstData = res.data.data[0];
  48. // 获取zhanghao字段的值
  49. const zhanghaoValue = firstData.zhanghao;
  50. console.log('zhanghaoValue:', zhanghaoValue);
  51. // 获取data数组中的第一个元素
  52. // 获取zhanghao字段的值
  53. router.pushUrl({
  54. url: 'pages/NewApp_one',
  55. params: {
  56. zhanghao: zhanghaoValue,
  57. }
  58. })
  59. }).catch(error => {
  60. console.error(error);
  61. })
  62. })
  63. Row(){
  64. Text('注册')
  65. .margin({right:5})
  66. .onClick( () =>{
  67. {
  68. router.pushUrl({
  69. url: 'pages/zhuce',
  70. })
  71. }
  72. })
  73. Text('|')
  74. Text('忘记密码')
  75. .margin({left:5})
  76. .onClick( () =>{
  77. {
  78. router.pushUrl({
  79. url: 'pages/WangjiMima',
  80. })
  81. }
  82. })
  83. }.margin(20)
  84. }
  85. .width('100%')
  86. .height('100%')
  87. }
  88. }

NewApp_one.ets

  1. import { app_shouye } from '../components/shouye/shouye'
  2. import { app_wode } from '../components/wode'
  3. import { app_fenlei } from '../components/fenlei'
  4. import { gouwuche } from '../components/gouwuche'
  5. import router from '@ohos.router'
  6. @Entry
  7. @Component
  8. struct NewApp_one {
  9. // 获取上一个页面传过来的该登录的用户名
  10. @State zhanghao: object = router.getParams()
  11. build() {
  12. Column() {
  13. Tabs({ barPosition: BarPosition.End }) {
  14. TabContent() {
  15. app_shouye({ zhanghao: this.zhanghao?.['zhanghao'] })
  16. }
  17. .tabBar((new BottomTabBarStyle($r('sys.media.ohos_app_icon'),'首页')))
  18. TabContent() {
  19. app_fenlei()
  20. }
  21. .tabBar((new BottomTabBarStyle($r('sys.media.ohos_app_icon'),'分类')))
  22. TabContent() {
  23. gouwuche({ zhanghao: this.zhanghao?.['zhanghao'] })
  24. }
  25. .tabBar((new BottomTabBarStyle($r('sys.media.ohos_app_icon'),'购物车')))
  26. TabContent() {
  27. app_wode({ zhanghao: this.zhanghao?.['zhanghao'] })
  28. }
  29. .tabBar((new BottomTabBarStyle($r('sys.media.ohos_app_icon'),'我的')))
  30. }
  31. }
  32. .width('100%')
  33. .height('100%')
  34. }
  35. onPageShow(){
  36. console.log('这是父组件显示页面生命周期函数')
  37. }
  38. }

sousuo.ets

  1. import router from '@ohos.router'
  2. import axios from '@ohos/axios'
  3. import { Header } from '../components/Toubu'
  4. @Entry
  5. @Component
  6. struct Sousuo {
  7. @State sousuoValue: object = router.getParams()
  8. @State items:Array<Object> = []
  9. @State selectedItemId : number = 0
  10. @State one:string = ''
  11. private changeValue:string = this.sousuoValue?.['sousuoValue']
  12. build() {
  13. Column() {
  14. Header()
  15. Search({ value: this.changeValue, placeholder: '请输入搜索的商品',})
  16. .searchButton('搜索')
  17. .width(300)
  18. .height(40)
  19. .backgroundColor('#F5F5F5')
  20. .placeholderColor(Color.Grey)
  21. .placeholderFont({ size: 14, weight: 400 })
  22. .textFont({ size: 14, weight: 400 })
  23. // 点击搜索
  24. .onSubmit((value: string) => {
  25. axios({
  26. method: "post",
  27. url: 'http://localhost:3000/shangpins/products/',
  28. data: {
  29. changeValue: this.changeValue
  30. }
  31. }).then(res => {
  32. console.log(JSON.stringify(res.data.data));
  33. this.items = res.data.data
  34. }).catch(error => {
  35. console.error(error);
  36. });
  37. })
  38. // 输入搜索
  39. .onChange((value: string) => {
  40. this.changeValue = value
  41. console.log(this.changeValue)
  42. axios({
  43. method: "post",
  44. url: 'http://localhost:3000/shangpins/products/',
  45. data: {
  46. changeValue: value
  47. }
  48. }).then(res => {
  49. console.log(JSON.stringify(res.data.data));
  50. this.items = res.data.data
  51. }).catch(error => {
  52. console.error(error);
  53. });
  54. })
  55. .margin(20)
  56. List({ space: 20, initialIndex: 0 }){
  57. ForEach(this.items, (item) => {
  58. ListItem() {
  59. Row(){
  60. Image(item.img)
  61. .alt($r('app.media.icon'))// 使用alt,在网络图片加载成功前使用占位图
  62. .width(150)
  63. .height(180)
  64. Column({space:10}){
  65. Text(item.name)
  66. .fontWeight(800)
  67. .margin(20)
  68. Text(item.detail)
  69. Text('¥:'+item.price)
  70. .fontColor('red')
  71. .fontWeight(FontWeight.Bold)
  72. .fontSize(20)
  73. }
  74. .width(180)
  75. }.alignItems(VerticalAlign.Top)
  76. }
  77. .onClick(() => {
  78. this.selectedItemId = item._id;
  79. // 获取点击物品的id
  80. this.one = item._id
  81. console.log(JSON.stringify(this.one))
  82. router.pushUrl({
  83. url: 'pages/detail',
  84. params: {
  85. id: this.one,
  86. }
  87. })
  88. })
  89. })
  90. }
  91. .height('90%')
  92. .listDirection(Axis.Vertical) // 排列方向
  93. .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 }) // 每行之间的分界线
  94. .edgeEffect(EdgeEffect.Spring) // 滑动到边缘无效果
  95. }
  96. .width('100%')
  97. .height('100%')
  98. }
  99. //上一个页面跳转过来之后查询的数据
  100. onPageShow() {
  101. console.log('wwww' + this.sousuoValue?.['sousuoValue']);
  102. axios({
  103. method: "post",
  104. url: 'http://localhost:3000/shangpins/products/',
  105. data: {
  106. changeValue: this.sousuoValue?.['sousuoValue'] // 修正获取参数的方式
  107. }
  108. }).then(res => {
  109. console.log(JSON.stringify(res.data.data));
  110. this.items = res.data.data
  111. }).catch(error => {
  112. console.error(error);
  113. });
  114. }
  115. }

WangjiMima.ets

  1. import { Header } from '../components/Toubu'
  2. import axios from '@ohos/axios'
  3. import router from '@ohos.router'
  4. @Entry
  5. @Component
  6. struct Index {
  7. // 上传数据
  8. @State zhanghao: string = ''
  9. @State mima: string = ''
  10. build() {
  11. Column() {
  12. Header()
  13. .margin(20)
  14. TextInput({placeholder:'原账号'})
  15. .margin(20)
  16. .height(50)
  17. .onChange(value =>{
  18. console.log(value)
  19. this.zhanghao = value
  20. })
  21. .backgroundColor('#36D2')
  22. TextInput({placeholder:'新密码'})
  23. .margin({ left:20,right:20,bottom:20 })
  24. .height(50)
  25. .onChange(value =>{
  26. console.log(value)
  27. this.mima = value
  28. })
  29. .backgroundColor('#36D2')
  30. Button('修改密码')
  31. .width(200)
  32. .onClick(()=>{
  33. axios({
  34. method: "post",
  35. url: 'http://localhost:3000/users/upd',
  36. data:{
  37. zhanghao:this.zhanghao,
  38. newmima:this.mima
  39. },
  40. }).then(res => {
  41. console.info('result:' + JSON.stringify(res.data));
  42. {
  43. router.pushUrl({
  44. url: 'pages/NewApp_one',
  45. })
  46. }
  47. }).catch(error => {
  48. console.error(error);
  49. })
  50. })
  51. }
  52. .width('100%')
  53. .height('100%')
  54. }
  55. }

XiugaiXinxi.ets

  1. import { Header } from '../components/Toubu'
  2. @Entry
  3. @Component
  4. struct XiugaiXinxi {
  5. @State message: string = '修改信息'
  6. build() {
  7. Column() {
  8. Header()
  9. Text(this.message)
  10. .fontSize(50)
  11. .fontWeight(FontWeight.Bold)
  12. }
  13. .width('100%')
  14. .height('100%')
  15. }
  16. }

zhuce.ets

  1. import { Header } from '../components/Toubu'
  2. import axios from '@ohos/axios'
  3. import router from '@ohos.router'
  4. @Entry
  5. @Component
  6. struct Index {
  7. // 上传数据
  8. @State zhanghao: string = ''
  9. @State mima: string = ''
  10. @State zhanghao_find:string =''
  11. @State mima_find:string =''
  12. build() {
  13. Column() {
  14. Header()
  15. .margin(20)
  16. TextInput({placeholder:'注册账号'})
  17. .margin(20)
  18. .height(50)
  19. .onChange(value =>{
  20. console.log(value)
  21. this.zhanghao = value
  22. })
  23. .backgroundColor('#36D2')
  24. TextInput({placeholder:'注册密码'})
  25. .margin({ left:20,right:20,bottom:20 })
  26. .height(50)
  27. .onChange(value =>{
  28. console.log(value)
  29. this.mima = value
  30. })
  31. .backgroundColor('#36D2')
  32. Button('注册并登录')
  33. .width(200)
  34. .onClick(()=>{
  35. axios({
  36. method: "post",
  37. url: 'http://localhost:3000/users/publish',
  38. data:{
  39. zhanghao:this.zhanghao,
  40. mima:this.mima
  41. },
  42. }).then(res => {
  43. console.info('result:' + JSON.stringify(res.data));
  44. router.pushUrl({
  45. url: 'pages/NewApp_one',
  46. })
  47. }).catch(error => {
  48. console.error(error);
  49. })
  50. })
  51. }
  52. .width('100%')
  53. .height('100%')
  54. }
  55. }

node.js后端架构

fenlei_api.js

  1. // user_api.js
  2. const express = require('express');
  3. const router = express.Router();
  4. const { fenlei } = require('../db');
  5. router.use(express.urlencoded({ extended: true }));
  6. router.use(express.json());
  7. // 全部查询
  8. router.get("/find_all", async (req, res) => { // Corrected function signature
  9. try {
  10. const results = await fenlei.find();
  11. if (results.length > 0) {
  12. // 如果找到匹配的记录,则返回所有匹配的记录
  13. res.json({ data: results, message: "登录成功!" });
  14. } else {
  15. res.status(404).json({ message: "未找到匹配的记录" });
  16. }
  17. } catch (error) {
  18. res.status(500).json({ message: "服务器内部错误" });
  19. }
  20. });
  21. // 指定查询
  22. router.get("/find/:name", async (req, res) => {
  23. try {
  24. const name = req.params.name;
  25. // 使用 find 查询所有匹配指定 name 的数据记录
  26. const results = await fenlei.find({ name });
  27. if (results.length > 0) {
  28. // 如果找到匹配的记录,则返回所有匹配的记录
  29. res.json({ data: results, message: "登录成功!" });
  30. } else {
  31. res.status(404).json({ message: "未找到匹配的记录" });
  32. }
  33. } catch (error) {
  34. res.status(500).json({ message: "服务器内部错误" });
  35. }
  36. });
  37. module.exports = router;

gouwuche_api.js

  1. // user_api.js
  2. const express = require('express');
  3. const router = express.Router();
  4. const { gouwuche } = require('../db');
  5. router.use(express.urlencoded({ extended: true }));
  6. router.use(express.json());
  7. // 全部查询
  8. router.post("/find", async (req, res) => {
  9. try {
  10. const { username } = req.body;
  11. // 使用 find 查询所有匹配指定 select_classify 的数据记录
  12. const results = await gouwuche.find({ username });
  13. if (results.length > 0) {
  14. // 如果找到匹配的记录,则返回所有匹配的记录
  15. res.json({ data: results, message: "登录成功!" });
  16. } else {
  17. res.status(404).json({ message: "未找到匹配的记录" });
  18. }
  19. } catch (error) {
  20. res.status(500).json({ message: "服务器内部错误" });
  21. }
  22. });
  23. // 添加到购物车
  24. router.post("/publish", async (req, res) => {
  25. try {
  26. const { username,name,detail,img,select_classifyprice,price } = req.body;
  27. await gouwuche.create({
  28. username,
  29. name,
  30. detail,
  31. img,
  32. select_classifyprice,
  33. price
  34. });
  35. res.send("success");
  36. } catch (error) {
  37. res.send(error, "error");
  38. }
  39. });
  40. module.exports = router;

shangpin_api.js

  1. // user_api.js
  2. const express = require('express');
  3. const router = express.Router();
  4. const { shangpin } = require('../db');
  5. router.use(express.urlencoded({ extended: true }));
  6. router.use(express.json());
  7. // 全部查询
  8. router.get("/find_all", async (req, res) => { // Corrected function signature
  9. try {
  10. const results = await shangpin.find();
  11. if (results.length > 0) {
  12. // 如果找到匹配的记录,则返回所有匹配的记录
  13. res.json({ data: results, message: "登录成功!" });
  14. } else {
  15. res.status(404).json({ message: "未找到匹配的记录" });
  16. }
  17. } catch (error) {
  18. res.status(500).json({ message: "服务器内部错误" });
  19. }
  20. });
  21. // 指定查询
  22. router.post("/find", async (req, res) => {
  23. try {
  24. const { select_classify } = req.body;
  25. // 使用 find 查询所有匹配指定 select_classify 的数据记录
  26. const results = await shangpin.find({ select_classify });
  27. if (results.length > 0) {
  28. // 如果找到匹配的记录,则返回所有匹配的记录
  29. res.json({ data: results, message: "登录成功!" });
  30. } else {
  31. res.status(404).json({ message: "未找到匹配的记录" });
  32. }
  33. } catch (error) {
  34. res.status(500).json({ message: "服务器内部错误" });
  35. }
  36. });
  37. // 指定商品详情查询
  38. router.post("/find_detail", async (req, res) => {
  39. try {
  40. const { _id } = req.body;
  41. // 使用 find 查询所有匹配指定 _id 的数据记录
  42. const results = await shangpin.find({ _id });
  43. if (results.length > 0) {
  44. // 如果找到匹配的记录,则返回所有匹配的记录
  45. res.json({ data: results, message: "登录成功!" });
  46. } else {
  47. res.status(404).json({ message: "未找到匹配的记录" });
  48. }
  49. } catch (error) {
  50. res.status(500).json({ message: "服务器内部错误" });
  51. }
  52. });
  53. //模糊查询
  54. router.post('/products', async (req, res) => {
  55. try {
  56. const changeValue = req.body.changeValue; // 修正获取请求体中的参数方式
  57. // 使用正则表达式进行模糊查询
  58. const results = await shangpin.find({ name: { $regex: changeValue, $options: 'i' } });
  59. if (results.length > 0) {
  60. // 如果找到匹配的记录,则返回所有匹配的记录
  61. res.json({ data: results, message: "查询成功!" });
  62. } else {
  63. res.status(404).json({ message: "未找到匹配的记录" });
  64. }
  65. } catch (error) {
  66. console.error(error);
  67. res.status(500).json({ message: "服务器内部错误" });
  68. }
  69. });
  70. module.exports = router;

user_api.js

  1. // user_api.js
  2. const express = require('express');
  3. const router = express.Router();
  4. const { users } = require('../db');
  5. router.use(express.urlencoded({ extended: true }));
  6. router.use(express.json());
  7. // 注册账号
  8. router.post("/publish", async (req, res) => {
  9. try {
  10. const { zhanghao, mima } = req.body;
  11. await users.create({
  12. zhanghao, mima
  13. });
  14. res.send("success");
  15. } catch (error) {
  16. res.send(error, "error");
  17. }
  18. });
  19. // 注销账号
  20. router.post("/del", async (req, res) => {
  21. console.log(req.body.zhanghao);
  22. try {
  23. const { zhanghao } = req.body;
  24. // 使用 deleteOne 删除指定 name 的数据
  25. const result = await users.deleteOne({ zhanghao });
  26. if (result.deletedCount === 1) {
  27. res.send("success");
  28. } else {
  29. res.send("未找到匹配的记录");
  30. }
  31. } catch (error) {
  32. res.send(error, "error");
  33. }
  34. });
  35. // 修改账号密码
  36. router.post("/upd", async (req, res) => {
  37. try {
  38. const { zhanghao, newmima } = req.body;
  39. // 使用 updateOne 更新指定 name 的数据记录的 nianling 字段
  40. const result = await users.updateOne({ zhanghao }, { $set: { mima: newmima } });
  41. res.json({ message: "密码更新成功!", result });
  42. } catch (error) {
  43. res.status(500).json({ error: error.message });
  44. }
  45. });
  46. // 账号登录
  47. router.get("/find/:zhanghao/:mima", async (req, res) => {
  48. try {
  49. const zhanghao = req.params.zhanghao;
  50. const mima = req.params.mima;
  51. // 使用 find 查询所有匹配指定 name 的数据记录
  52. const results = await users.find({ zhanghao, mima });
  53. if (results.length > 0) {
  54. // 如果找到匹配的记录,则返回所有匹配的记录
  55. res.json({ data: results, message: "登录成功!" });
  56. } else {
  57. res.status(404).json({ message: "未找到匹配的记录" });
  58. }
  59. } catch (error) {
  60. res.status(500).json({ message: "服务器内部错误" });
  61. }
  62. });
  63. module.exports = router;

db.js

  1. const mongoose = require('mongoose')
  2. //连接mongodb数据库
  3. mongoose.connect("mongodb://localhost:27017/node_one")
  4. .then(() => {
  5. console.log("数据库连接成功!")
  6. })
  7. .catch((err) => {
  8. console.log("数据库连接失败!", err)
  9. })
  10. // 创建表用户表
  11. const Users = new mongoose.Schema({
  12. zhanghao: {
  13. type: String,
  14. },
  15. mima: {
  16. type: String
  17. },
  18. })
  19. // 创建商品表
  20. const Shangpin = new mongoose.Schema({
  21. name: {
  22. type: String,
  23. },
  24. detail: {
  25. type: String
  26. },
  27. img:{
  28. type: String
  29. },
  30. select_classify:{
  31. type: String
  32. },
  33. price:{
  34. type: String
  35. }
  36. })
  37. //创建分类表
  38. const Fenlei = new mongoose.Schema({
  39. name: {
  40. type: String,
  41. },
  42. })
  43. // 创建购物车表
  44. const Gouwuche = new mongoose.Schema({
  45. username:{
  46. type: String,
  47. },
  48. name: {
  49. type: String,
  50. },
  51. detail: {
  52. type: String
  53. },
  54. img:{
  55. type: String
  56. },
  57. select_classify:{
  58. type: String
  59. },
  60. price:{
  61. type: String
  62. }
  63. })
  64. const users = mongoose.model("Users", Users);
  65. const shangpin = mongoose.model("Shangpin", Shangpin);
  66. const fenlei = mongoose.model("Fenlei", Fenlei);
  67. const gouwuche = mongoose.model("Gouwuche", Gouwuche);
  68. module.exports = {
  69. users,
  70. shangpin,
  71. fenlei,
  72. gouwuche
  73. }

index.js

  1. // index.js
  2. const express = require('express');
  3. const app = express();
  4. const userApi = require('./user_ctrl/user_api');
  5. const shangpinApi = require('./shangpin_ctrl/shangpin_api');
  6. const fenleiApi = require('./fenlei_ctrl/fenlei_api');
  7. const gouwucheApi = require('./gouwuche_ctrl/gouwuche_api');
  8. app.use('/users', userApi);
  9. app.use('/shangpins', shangpinApi);
  10. app.use('/gouwuche', gouwucheApi);
  11. app.use('/fenleis', fenleiApi);
  12. app.listen(3000, () => {
  13. console.log('server running');
  14. });

后端安装指令

1. 下载node.js框架

npm install express --save

2. 下载nodemon解决node代码更新的痛点

npm install nodemon -g

3. node.js连接mongodb数据库

npm install mongoose --save

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/648397
推荐阅读
  

闽ICP备14008679号