鸿蒙上实现“十二生肖”计算器

作者:狼哥Army

这次直接使用端云一体化开发,方便了很多,不用手工集成云函数 SDK,而且在 DevEco Studio 就可以完成端侧代码开发和云侧代码开发,一键部署云函数和云数据库,下面先来看一下效果。

效果如下:

创建端云一体化项目,这里就不介绍的,可以移步到官方详细教程:

https://developer.harmonyos.com/cn/docs/documentation/doc-guides-V3/agc-harmonyos-clouddev-createproject-0000001443369760-V3

端云一体化项目结构和之前不一样,多了 CloudProgram 模块, 下面介绍项目开发,先从云侧开发开始,再到端侧开发。

云侧开发

展开 CloudProgram 模块,右击 cloudfunctions 目录,创建自定义云函数:

②打开 function-config.json 文件,记录修改 authType为apigw-client。

{
  "handler": "zodiacFun.myHandler",
  "triggers": [
    {
      "type": "http",
      "properties": {
        "enableUriDecode": true,
        "authFlag": "true",
        "authAlgor": "HDA-SYSTEM",
        "authType": "apigw-client"
      }
    }
  ]
}

打开 zodiacFun.ts 文件,编写自定云函数逻辑,计算十二生肖方法就是写在这里,同时把结果返回端侧。

let myHandler = async function (event, context, callback, logger) {
  // 打印参数
  logger.info("**event: "+JSON.stringify(event))
  // 定义十二生肖
  let zodiac = ["猴", "鸡", "狗", "猪", "鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊"];

  // 转化参数为对象参数
  event.body = JSON.parse(event.body);
  // 根据年份计算生肖下标
  let idx = parseInt(event.body.year)%12;
  // 获取生肖
  let sx = zodiac[idx];
  // 生成HTTP响应对象
  let res = new context.HTTPResponse({"zodiac": sx}, {
    "faas-content-type": "json"
  }, "application/json", "200");

  // 回调
  callback(res);

};

export { myHandler };

部署云侧代码到 AGC 上,右击自定义云函数目录,选择 Deploy Function, 自动部署到 Serverless 上,如果提示没有登录,登录成功后,再操作一次部署。

⑤到这里云侧开发就完成了,可以登录到 AGC->云函数,找到刚才部署的云函数,测试一下自定义云函数。

端侧开发

①先看一下端侧模块结构:

②common 目录放一些公共的封装类,比如 Log 类;components 目录放自定义组件;entryability 是自动生成的,里面有一个 EntryAbility 类,包含生命周期;pages 目录放 UI 布局页面;services 目录放业务逻辑类,比如调用云侧接口。

③这里只介绍 services 目录和 pages 目录下的工作,先介绍如何和 AGC 连接上的,这里使用一个单独的文件来处理。

services 目录下 AgcConfig.ts:

import agconnect from '@hw-agconnect/api-ohos';
import "@hw-agconnect/core-ohos";
import "@hw-agconnect/auth-ohos";
import '@hw-agconnect/auth-types-ohos';

import { Log } from '../common/Log';

const TAG = "[AGCConfig]";

export function getAGConnect(context) {
    try {
        agconnect.instance().init(context);
        Log.info(TAG, "xx init AGC SDK success");
        return agconnect;
    }
    catch (err) {
        Log.error(TAG, "xx initAgcSDK failed" + err);
    }
}

services 目录下 Function.ts:

import agconnect from '@hw-agconnect/api-ohos';
import "@hw-agconnect/function-ohos";

import { Log } from '../common/Log';
import { getAGConnect } from './AgcConfig';

const TAG = "[AGCFunction]";


export function zodiac(context, params: any): Promise {
    console.info('xx Function Params: ' + JSON.stringify(params))
    return new Promise((resolve, reject) => {
        // 获取AGC连接
        getAGConnect(context);
        let functionResult;
        // 获取云函数回调
        let functionCallable = agconnect.function().wrap("zodiacfun-$latest");
        // 传递参数调用云函数
        functionCallable.call(params).then((ret: any) => {
            Log.info(TAG,'xx Zodiac Function Sucess')
            // 获取成功返回结果集
            functionResult = ret.getValue();
            Log.info(TAG, "xx Zodiac Function Called, Returned Value: " + JSON.stringify(ret.getValue()));
            // 返回结果集给界面
            resolve(functionResult.zodiac);
        }).catch((error: any) => {
            Log.error(TAG, "xx Error - could not obtain zodiac function result. " );
            Log.error(TAG, "xx Error Detail: " + JSON.stringify(error));
            reject(error);
        });
    });
}

pages 目录 Index.ts 这里是页面布局,上面看到的效果,就是这里实现的。

import { zodiac } from '../services/Function';

@Entry
@Component
struct Index {
  // 存储选择年份
  @State year: number = 2022
  // 计算出来生肖
  @State born: string = "?"
  // 是否在计算中
  @State flag: boolean = false

  // 计算生肖
  getBorn() {
    // 标识为计算中
    this.flag = true;
    console.info('xx Page year: ' + this.year)
    // 封装参数
    let params = {
      "year": this.year
    }
    // 调用函数
    zodiac(getContext(this), params).then((res) => {
      // 计算完成
      this.flag = false;
      // 结果赋值给生肖变量
      this.born = res;
    }).catch((err) => {
      // 计算完成
      this.flag = false;
      console.error('xx error: ', err && err.message);
    });
  }

  build() {
    Stack() {
      if (!this.flag) {
        Column({space: 20}) {
          Text('请选择年份')
            .fontSize(20)
            .fontWeight(FontWeight.Bold)

          // 选择年份
          Column() {
            Text(this.year + '')
              .fontSize(20)
              .fontWeight(FontWeight.Bold)
              .padding(10)
              .width(100)
              .border({ width: 1, radius: 8 })
          }
          .bindMenu([
            { value: '2006', action: () => {this.year = 2006; this.born = '?'} },
            { value: '2007', action: () => {this.year = 2007; this.born = '?'} },
            { value: '2008', action: () => {this.year = 2008; this.born = '?'} },
            { value: '2009', action: () => {this.year = 2009; this.born = '?'} },
            { value: '2010', action: () => {this.year = 2010; this.born = '?'} },
            { value: '2011', action: () => {this.year = 2011; this.born = '?'} },
            { value: '2012', action: () => {this.year = 2012; this.born = '?'} },
            { value: '2013', action: () => {this.year = 2013; this.born = '?'} },
            { value: '2014', action: () => {this.year = 2014; this.born = '?'} },
            { value: '2015', action: () => {this.year = 2015; this.born = '?'} },
            { value: '2016', action: () => {this.year = 2016; this.born = '?'} },
            { value: '2017', action: () => {this.year = 2017; this.born = '?'} },
            { value: '2018', action: () => {this.year = 2018; this.born = '?'} },
            { value: '2019', action: () => {this.year = 2019; this.born = '?'} },
            { value: '2020', action: () => {this.year = 2020; this.born = '?'} },
            { value: '2021', action: () => {this.year = 2021; this.born = '?'} },
            { value: '2022', action: () => {this.year = 2022; this.born = '?'} },
            { value: '2023', action: () => {this.year = 2023; this.born = '?'} },
            { value: '2024', action: () => {this.year = 2024; this.born = '?'} },
            { value: '2025', action: () => {this.year = 2025; this.born = '?'} }
          ])

          // 计算按钮操作
          Button('计算', {type: ButtonType.Normal, stateEffect: true})
            .fontSize(18)
            .borderRadius(8)
            .width(100)
            .margin({bottom: 20})
            .onClick(() => {
              // 根据年份计算生肖
              this.getBorn()
            })

            // 显示计算结果
            Text(`${this.year} 年生肖是  ${this.born}`)
              .fontSize(20)
              .fontWeight(FontWeight.Bold)
        }
        .width('100%')
        .height('100%')
        .padding({top: '33%'})
      } else {
        // 计算中
        LoadingProgress().color(Color.Blue)
          .backgroundColor(Color.Transparent)
      }
    }
  }
}

总结

由于调用云侧云函数是异步的,不能马上返回结果,这里添加 LoadingProgress 组件,让用户知道在运行中,效果看得不是很明显。

可能录制时,网速很快,LoadingProgress 组件闪一下就不见了,如果遇到网络慢时,LoadingProgress 就会一直转,直到云函数返回响应时,再消失 LoadingProgress。

展开阅读全文

页面更新:2024-03-13

标签:生肖   鸿蒙   计算器   年份   函数   组件   模块   参数   效果   代码   文件   目录

1 2 3 4 5

上滑加载更多 ↓
推荐阅读:
友情链接:
更多:

本站资料均由网友自行发布提供,仅用于学习交流。如有版权问题,请与我联系,QQ:4156828  

© CopyRight 2008-2024 All Rights Reserved. Powered By bs178.com 闽ICP备11008920号-3
闽公网安备35020302034844号

Top