当前位置:   article > 正文

爱星物联——【小白二开系列】通过新增自定义服务,我强制让APP增加了一个食谱模块

爱星物联——【小白二开系列】通过新增自定义服务,我强制让APP增加了一个食谱模块


前言

平台提供了很多 API,有的时候我们想要开发一个独立业务,不想要和平台提供 API 项目柔和在一起,可以考虑增加新的自定义接口服务和业务服务;今天我们就试试弄一个自己的业务 API 服务,用来实现厨房智能小家电里常用的食谱模块吧;

正文

1、创建服务

  • 搭建新的业务 API 服务,需要用到 iot_demo_api_service 模板;
  • 搭建新的业务服务,需要用到 iot_demo_service 模板;

我们先将模板目录 Copy 出来,修改里面的项目名称,这里我将项目名称定义为 iot_recipes_api_service、iot_recipes_service,这个两个服务专门用于给厨房类家电提供制作食谱相关业务接口;
图一

2、数据库表创建

初步设计有如下数据表

  • 食谱类型表
  • 食谱信息表
  • 食材表
  • 食材类型表
  • 食谱步骤表
  • 食谱步骤食材关联表
  • 食谱评论评分表
  • 食谱赞、踩、收藏表

3、业务代码生成

使用代码目录的代码生成工具,生成食谱业务的所有代码

在生成之前,我们先编辑下代码生成工具的配置文件
图二
编辑 gen.bat 文件
图三
执行 gen.bat,实现食谱模块的所有代码生成
图四
将生成所得的 convert、handler、service 目录直接复制到 iot_recipes_service 服务的根目录,注意 handler 目录有一个 handler 注册的方法需要手写,你需要打开手动编写下,将所有 handler 进行注册;
图五
执行 gentoo.bat,得到生成后的 model 和 orm;

经过如上操作,基础功能的添删改查就完成;

4、App api 接口实现

APP 中增加食谱类型表、食谱信息表、食材表、食材类型表、食谱步骤表数据查询接口,增加食谱评论评分表、食谱赞、踩、收藏表维护功能;

//食谱
appappi.GET("/recipesInfo/detail/:id", apis.RecipesInfocontroller.GetRecipesInfoDetail)
appappi.GET("/recipesInfo/list", apis.RecipesInfocontroller.QueryRecipesInfoList)

//食谱类型
appappi.GET("/recipesType/list", apis.RecipesTypecontroller.QueryRecipesTypeList)

//食材
appappi.GET("/food/detail/:id", apis.Foodcontroller.GetFoodDetail)
appappi.GET("/food/list", apis.Foodcontroller.QueryFoodList)

//食材类型
appappi.GET("/foodType/list", apis.FoodTypecontroller.QueryFoodTypeList)

//增加食谱评论评分表
appappi.GET("/recipesComment/list", apis.RecipesInfocontroller.QueryRecipesCommentList)
appappi.GET("/recipesComment/add", apis.RecipesInfocontroller.AddRecipesComment)

//食谱赞、踩、收藏表
appappi.GET("/recipesComment/setGood", apis.RecipesCommentcontroller.SetGood)
appappi.GET("/recipesComment/setBad", apis.RecipesCommentcontroller.SetBad)
appappi.GET("/recipesComment/setLike", apis.RecipesCommentcontroller.SetBad)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

5、Cloud api 接口实现(添加到 iot_cloud_api_service 服务)

APP 中增加食谱类型表、食谱信息表、食材表、食材类型表、食谱步骤表配置功能接口,增加食谱评论评分表、食谱赞、踩、收藏表查询功能;

//食谱
webapi.GET("/recipesInfo/detail/:id", apis.RecipesInfocontroller.GetRecipesInfoDetail)
webapi.GET("/recipesInfo/list", apis.RecipesInfocontroller.QueryRecipesInfoList)
webapi.POST("/recipesInfo/add", apis.RecipesInfocontroller.AddRecipesInfo)
webapi.POST("/recipesInfo/edit", apis.RecipesInfocontroller.EditRecipesInfo)
webapi.POST("/recipesInfo/publish", apis.RecipesInfocontroller.PublishRecipesInfo)
webapi.POST("/recipesInfo/delete/:id", apis.RecipesInfocontroller.DeleteRecipesInfo)

//食谱类型
webapi.GET("/recipesType/detail/:id", apis.RecipesTypecontroller.GetRecipesTypeDetail)
webapi.GET("/recipesType/list", apis.RecipesTypecontroller.QueryRecipesTypeList)
webapi.POST("/recipesType/add", apis.RecipesTypecontroller.AddRecipesType)
webapi.POST("/recipesType/edit", apis.RecipesTypecontroller.EditRecipesType)
webapi.POST("/recipesType/delete/:id", apis.RecipesTypecontroller.DeleteRecipesType)

//食材
webapi.GET("/food/detail/:id", apis.Foodcontroller.GetFoodDetail)
webapi.GET("/food/list", apis.Foodcontroller.QueryFoodList)
webapi.POST("/food/add", apis.Foodcontroller.AddFood)
webapi.POST("/food/edit", apis.Foodcontroller.EditFood)
webapi.POST("/food/delete/:id", apis.Foodcontroller.DeleteFood)

//食材类型
webapi.GET("/foodType/detail/:id", apis.FoodTypecontroller.GetFoodTypeDetail)
webapi.GET("/foodType/list", apis.FoodTypecontroller.QueryFoodTypeList)
webapi.POST("/foodType/add", apis.FoodTypecontroller.AddFoodType)
webapi.POST("/foodType/edit", apis.FoodTypecontroller.EditFoodType)
webapi.POST("/foodType/delete/:id", apis.FoodTypecontroller.DeleteFoodType)

//食谱步骤
webapi.GET("/recipesSteps/list", apis.RecipesStepscontroller.QueryRecipesStepsList)
webapi.POST("/recipesSteps/add", apis.RecipesStepscontroller.AddRecipesSteps)
webapi.POST("/recipesSteps/edit", apis.RecipesStepscontroller.EditRecipesSteps)
webapi.POST("/recipesSteps/delete/:id", apis.RecipesStepscontroller.DeleteRecipesSteps)

//食谱步骤食材关联表
webapi.GET("/recipesStepRe/list", apis.RecipesStepRecontroller.QueryRecipesStepList)
webapi.POST("/recipesStepRe/add", apis.RecipesStepRecontroller.AddRecipesStep)
webapi.POST("/recipesStepRe/delete/:id", apis.RecipesStepRecontroller.DeleteRecipesStep)

//食材步骤关联
webapi.GET("/recipesStepRe/list", apis.RecipesInfocontroller.QueryRecipesStepReList)
webapi.POST("/recipesStepRe/add", apis.RecipesInfocontroller.AddRecipesStepRe)
webapi.POST("/recipesStepRe/delete/:id", apis.RecipesInfocontroller.DeleteRecipesStepRe)

//增加食谱评论评分表
webapi.GET("/recipesComment/list", apis.RecipesInfocontroller.QueryRecipesCommentList)
webapi.GET("/recipesComment/repley", apis.RecipesInfocontroller.AddRecipesComment)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

6、前端功能实现

开放平台增加食谱管理、食谱类型管理、食材管理、食材类型管理、食材统计等功能页面;
图六
前端大部分组件使用的 ant-design-vue 的原生组件,直接参照官方文档就可以开发了;另外框架自定义了 ChartCard、ColorPicker、DemoStep、detailChange、Editor、GlobalHeader、IconFont、IconSelector、ImgCutterDialog、MultiTab、NoData、NProgress、PreviewModal、SelectLang、tableCard、uploadButton、uploadCard、VueQrCode 组件,你可以参照已实现示例进行使用;
图七

7、APP 开发

因为平台提供的开源版 APP 我没有拿到源代码,无法直接修改,于是我想到一个非常特别的方式来实现 APP 的功能,就是我创建了一个食谱的产品,然后编写了一套食谱的控制面板,这个食谱的产品默认添加给每一个注册用户,然后食谱面板中完成食谱模块的功能;
图八
于是我写了一个食谱的 H5 项目,作为产品的方式默认引入到 APP 中, 当然你可以使用官方提供的面板的模板进行改造,这样可以使用到于原生交互和设备控制的功能;
图九
接下来家庭数据获取,为每一个用户提供一个默认食谱面板入口;

找到:iot_app_api_service/controls/user/services/home_service.go,在大概 196 行的位置增加默认食谱面板的引用,以产品面板的方式加载食谱模块;

注意:deviceList 中的设备类型修改 3,这样就不会出现开关图标了;
图十
完美,我让爱星物联开源 APP 硬生生的扩展了一个食谱的模块了;
图十一

总结

以上就是本期分享的内容,目的在于让大家快速适应新品方案的开发,更多资料可从我们官网上获取。

官方官网:https://www.ai-thinker.com
开发资料:https://docs.ai-thinker.com/
官方论坛:http://bbs.ai-thinker.com
技术支持:support@aithinker.com
爱星物联IoT平台体验网址:https://open.iot-aithings.com

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

闽ICP备14008679号