文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

鸿蒙HarmonyOS北向应用开发者极速入门教程(一)续-实战练习篇1

2024-12-03 13:03

关注

 想了解更多内容,请访问:

51CTO和华为官方合作共建的鸿蒙技术社区

https://harmonyos.51cto.com/

三、实战练习

截图另外做文档答题。文档要求,文件名:某某研究日志日期。文件内容,题目和答题,截图代码和文字等综合展示。

1.练习题一

以下是基于DevEco Studio蛟龙腾飞北向应用开发工程师已经实现的布局、功能、代码及路径,请安装要求一模一样的流程和效果,在自己的DevEco Studio实现。这里我们可以自行选择自己想开发的设备和模板,这里我们以Phone为例,开发模板选择空特性java的开发模板,点击next进行下一步。

开发的设备有七种:

Phone设备中有很多种不同的模板,主要是java和js进行开发以及不同的模板样式,不同样式之间布局不一样,不同的布局所展示的效果代码已经写入其中,只需要加入想加入的元素即可。


选择好了之后点击next进行下一步。

这里是创建项目的一些项目配置,配置完成点击Finish完成创建。


完成创建后,我们进入了主界面,这里需要等待一小会,因为一些配置东西在进行下载配置。


Phone模拟器上的代码案例:


显示效果:

 




双击图中选中的设备就可以运行了。

显示如下:



运行效果:


点击“点击了解更多”进入下一个页面:


代码如下:

第一个布局中

  1. "1.0" encoding="utf-8"?> 
  2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
  3.     ohos:height="match_parent" 
  4.     ohos:width="match_parent" 
  5.     ohos:orientation="vertical"
  6.  
  7.     
  8.         ohos:width="match_parent" 
  9.         ohos:weight="1"
  10.         
  11.             ohos:width="match_content" 
  12.             ohos:height="match_content" 
  13.             ohos:text="蛟龙腾飞" 
  14.             ohos:text_size="80px" 
  15.             ohos:top_margin="280px" 
  16.             ohos:left_margin="50px"/> 
  17.      
  18.     
  19.         ohos:weight="1" 
  20.         ohos:width="match_parent"
  21.         
  22.             ohos:width="1080px" 
  23.             ohos:height="468px" 
  24.             ohos:image_src="$media:index12.jpg"/> 
  25.  
  26.      
  27.     
  28.         ohos:width="match_parent" 
  29.         ohos:weight="3"
  30.         
  31.             ohos:width="match_content" 
  32.             ohos:height="match_content" 
  33.             ohos:text_size="60px" 
  34.             ohos:multiple_lines="true" 
  35.             ohos:left_margin="8px" 
  36.             ohos:text="带你从传统的互联网、移动互联网时代"/> 
  37.         
  38.             ohos:width="match_content" 
  39.             ohos:height="match_content" 
  40.             ohos:text_size="60px" 
  41.             ohos:multiple_lines="true" 
  42.             ohos:left_margin="8px" 
  43.             ohos:top_margin="10px" 
  44.             ohos:text="跳转到万物互联的智能世界!"/> 
  45.         
  46.             ohos:width="match_content" 
  47.             ohos:height="match_content" 
  48.             ohos:text_size="60px" 
  49.             ohos:multiple_lines="true" 
  50.             ohos:left_margin="8px" 
  51.             ohos:top_margin="10px" 
  52.             ohos:text="马上创建体验个人、公司或组织的鸿蒙应用吧!"/> 
  53.         
  54.             ohos:id="$+id:jltfbutton" 
  55.             ohos:width="match_content" 
  56.             ohos:height="match_content" 
  57.             ohos:text="点击了解更多" 
  58.             ohos:text_color="red" 
  59.             ohos:text_size="100px" 
  60.             ohos:top_margin="400px" 
  61.             ohos:left_margin="420px"/> 
  62.      
  63.  
  64.  

 第二个布局中

  1. "1.0" encoding="utf-8"?> 
  2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
  3.     ohos:height="match_parent" 
  4.     ohos:width="match_parent" 
  5.     ohos:orientation="vertical"
  6.  
  7.     
  8.         ohos:width="match_parent" 
  9.         ohos:weight="1"
  10.         
  11.             ohos:width="match_content" 
  12.             ohos:height="match_content" 
  13.             ohos:text="蛟龙腾飞" 
  14.             ohos:text_size="80px" 
  15.             ohos:top_margin="280px" 
  16.             ohos:left_margin="50px"/> 
  17.      
  18.     
  19.         ohos:weight="1" 
  20.         ohos:width="match_parent"
  21.         
  22.             ohos:width="1080px" 
  23.             ohos:height="468px" 
  24.             ohos:image_src="$media:index13.jpg"/> 
  25.  
  26.      
  27.     
  28.         ohos:width="match_parent" 
  29.         ohos:weight="3"
  30.         
  31.             ohos:width="match_content" 
  32.             ohos:height="match_content" 
  33.             ohos:text_size="60px" 
  34.             ohos:multiple_lines="true" 
  35.             ohos:left_margin="8px" 
  36.             ohos:text="你好,欢迎来到鸿蒙时代!"/> 
  37.         
  38.             ohos:width="match_content" 
  39.             ohos:height="match_content" 
  40.             ohos:text_size="60px" 
  41.             ohos:multiple_lines="true" 
  42.             ohos:left_margin="8px" 
  43.             ohos:top_margin="10px" 
  44.             ohos:text="蛟龙腾飞,鸿蒙先行者,全心全意为你"/> 
  45.         
  46.             ohos:width="match_content" 
  47.             ohos:height="match_content" 
  48.             ohos:text_size="60px" 
  49.             ohos:multiple_lines="true" 
  50.             ohos:left_margin="10px" 
  51.             ohos:top_margin="10px" 
  52.             ohos:text="提供鸿蒙各项服务! 马上咨询:李先生 13725519713 或 18138827525"/> 
  53.      
  54.  
  55.  

 在slice文件的类中添加点击事件进行跳转:


  1. Button button = (Button) findComponentById(ResourceTable.Id_jltfbutton); 
  2. button.setClickedListener(new Component.ClickedListener() { 
  3.     @Override 
  4.     public void onClick(Component component) { 
  5.         present(new JltfAbilitySlice(),new Intent()); 
  6.     } 
  7. }); 

 TV模拟器上的代码案例:

新建项目选择模板进行下一步。


显示效果:


点击“点击了解更多”进入下一个页面。


代码如下:

第一个页面中的布局

  1. "1.0" encoding="utf-8"?> 
  2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
  3.     ohos:height="match_parent" 
  4.     ohos:width="match_parent" 
  5.     ohos:orientation="vertical"
  6.  
  7.    
  8.        ohos:width="match_parent" 
  9.        ohos:height="160px" 
  10.        > 
  11.        
  12.            ohos:width="match_content" 
  13.            ohos:height="match_content" 
  14.            ohos:text="蛟龙腾飞" 
  15.            ohos:text_size="25fp" 
  16.            ohos:top_margin="40px" 
  17.            ohos:left_margin="40px"/> 
  18.  
  19.     
  20.     
  21.         ohos:width="match_parent" 
  22.         ohos:height="920px" 
  23.         ohos:orientation="horizontal"
  24.         
  25.             ohos:height="match_parent" 
  26.             ohos:width="820px"
  27.             
  28.                 ohos:width="600px" 
  29.                 ohos:height="600px" 
  30.                 ohos:top_margin="60px" 
  31.                 ohos:left_margin="100px" 
  32.                 ohos:image_src="$media:index6"/> 
  33.          
  34.         
  35.             ohos:height="match_parent" 
  36.             ohos:width="1100px"
  37.             
  38.                 ohos:width="match_content" 
  39.                 ohos:height="match_content" 
  40.                 ohos:multiple_lines="true" 
  41.                 ohos:text="带你从传统的互联网、移动互联网时代 
  42.                                跳转到万物互联的智能世界! 
  43.                                     马上创建体验个人、公司或组织的鸿蒙应用吧!" 
  44.                 ohos:text_size="25fp" 
  45.                 ohos:top_margin="240px" 
  46.                 ohos:left_margin="10px"/> 
  47.             
  48.                 ohos:id="$+id:jltfbutton" 
  49.                 ohos:width="match_content" 
  50.                 ohos:height="match_content" 
  51.                 ohos:text="点击了解更多" 
  52.                 ohos:text_size="30fp" 
  53.                 ohos:top_margin="290px" 
  54.                ohos:left_margin="680px" 
  55.                 ohos:text_color="red"/> 
  56.          
  57.  
  58.      
  59.  
  60.  

 第二个页面中的布局

  1. "1.0" encoding="utf-8"?> 
  2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
  3.     ohos:height="match_parent" 
  4.     ohos:width="match_parent" 
  5.     ohos:orientation="vertical"
  6.  
  7.     
  8.         ohos:width="match_parent" 
  9.         ohos:height="160px" 
  10.         > 
  11.         
  12.             ohos:width="match_content" 
  13.             ohos:height="match_content" 
  14.             ohos:text="蛟龙腾飞" 
  15.             ohos:text_size="25fp" 
  16.             ohos:top_margin="40px" 
  17.             ohos:left_margin="40px"/> 
  18.  
  19.      
  20.     
  21.         ohos:width="match_parent" 
  22.         ohos:height="920px" 
  23.         ohos:orientation="horizontal"
  24.         
  25.             ohos:id="$+id:direction1" 
  26.             ohos:height="match_parent" 
  27.             ohos:width="820px"
  28.             
  29.                 ohos:width="600px" 
  30.                 ohos:height="600px" 
  31.                 ohos:top_margin="60px" 
  32.                 ohos:left_margin="100px" 
  33.                 ohos:image_src="$media:index7"/> 
  34.          
  35.         
  36.             ohos:height="match_parent" 
  37.             ohos:width="1100px"
  38.             
  39.                 ohos:width="match_content" 
  40.                 ohos:height="match_content" 
  41.                 ohos:multiple_lines="true" 
  42.                 ohos:text="你好,欢迎来到鸿蒙时代! 
  43.                                     蛟龙腾飞,鸿蒙先行者,全心全意为你提供鸿蒙各项服务!  马上咨询: 
  44.                                              李先生:13725519713 或 18138827525" 
  45.                 ohos:text_size="25fp" 
  46.                 ohos:top_margin="240px" 
  47.                 ohos:left_margin="10px"/> 
  48.          
  49.  
  50.      
  51.  
  52.  

 然后再第一个页面中加入点击事件进行跳转

  1. Button button = (Button) findComponentById(ResourceTable.Id_jltfbutton); 
  2.  
  3.   button.setClickedListener(new Component.ClickedListener() { 
  4.         @Override 
  5.         public void onClick(Component component) { 
  6.  
  7.             present(new JltfAbilitySlice(),new Intent()); 
  8.         } 
  9.  
  10.  
  11.     }); 

Smart vision模拟器上的代码案例

新建项目选择模板进行下一步。


这里选择的是js开发的模板就需要下载node.js文件在编辑器中进行配置(node.js)网上有下载教程。


显示效果:


点击“点击了解更多”进入下一个页面


代码如下:

 Index.hml

  1. "container"
  2.     "jltftxt"
  3.        蛟龙腾飞 
  4.      
  5.     "container1"
  6.         "/common/index27.jpg" class="jltfimg"/> 
  7.         "container2"
  8.             "jltftxt1"
  9.                 带你从传统的互联网、移动互 
  10.              
  11.             "jltftxt2"
  12.                 联网时代. 跳转到万物互联的智 
  13.              
  14.             "jltftxt3"
  15.                 能世界!。马上创建体验个人、 
  16.              
  17.             "jltftxt4"
  18.                 公司或组织的鸿蒙应用吧! 
  19.              
  20.             "jltfbtn"type="button" value="点击了解更多" onclick="jltfclick"/> 
  21.         
 
  •  
  •     
  •  
  •  
  •  
  • Index.css

    1. .container { 
    2.     flex-direction: column
    3.     width: 960px; 
    4.     height: 480px; 
    5.     justify-content: center; 
    6.     align-items: center; 
    7. .container1 { 
    8.     flex-direction: row; 
    9.     width: 960px; 
    10.     height: 400px; 
    11. .container2 { 
    12.     margin-left: 30px; 
    13.     flex-direction: column
    14.     width: 600px; 
    15.     height: 400px; 
    16. .jltftxt { 
    17.      margin-left: -700px; 
    18.      margin-bottom: 10px; 
    19.     font-size: 45px; 
    20. .jltftxt1 { 
    21.     margin-top: 45px; 
    22. .jltftxt4 { 
    23.     margin-left: 5px; 
    24. .jltfimg { 
    25.     margin-top: 40px; 
    26.     width: 300px; 
    27.     height: 282px; 
    28.     margin-left: 40px; 
    29. .jltfbtn { 
    30.     height: 60px; 
    31.     width: 280px; 
    32.     margin-left: 260px; 
    33.     margin-top: 50px; 
    34. .jltftxt1,.jltftxt2,.jltftxt3,.jltftxt4{ 
    35.     font-size: 40px; 
    36.     margin-left: 20px; 

    Index.js

    1. import router from '@system.router' 
    2.  
    3. export default { 
    4.     data: { 
    5.  
    6.     }, 
    7.     jltfclick() { 
    8.         router.replace({ 
    9.             uri:'pages/jltfindex/jltfindex' 
    10.         }); 
    11.     } 
    12.  
    13.   
    14.  
    15. jltfIndex.hml 
    16.  
    17. "container"
    18.     "jltftxt"
    19.         蛟龙腾飞 
    20.      
    21.      "container1"
    22.     "/common/index28.jpg" class="jltfimg"/> 
    23.          "container2"
    24.              "jltftxt1"
    25.                  你好,欢迎来到鸿蒙时代! 
    26.               
    27.              "jltftxt2"
    28.                  蛟龙腾飞,鸿蒙先行者,全 
    29.               
    30.              "jltftxt3"
    31.                  心全意为你提供鸿蒙各项服 
    32.               
    33.              "jltftxt4"
    34.                  务! 
    35.               
    36.           
    37.       
    38.  

    jltfIndex.css

    1. .container { 
    2.     flex-direction: column
    3.     width: 960px; 
    4.     height: 480px; 
    5.     justify-content: center; 
    6.     align-items: center; 
    7. .container1 { 
    8.     flex-direction: row; 
    9.     width: 960px; 
    10.     height: 400px; 
    11. .container2 { 
    12.     margin-left: 5px; 
    13.     flex-direction: column
    14.     width: 600px; 
    15.     height: 400px; 
    16. .jltftxt { 
    17.     margin-left: -700px; 
    18.     margin-bottom: 10px; 
    19.     font-size: 45px; 
    20. .jltftxt1 { 
    21.     margin-top: 50px; 
    22. .jltfimg { 
    23.     margin-top: 20px; 
    24.     width: 357px; 
    25.     height: 321px; 
    26.     margin-left: 20px; 
    27. .jltftxt1,.jltftxt2,.jltftxt3,.jltftxt4{ 
    28.     font-size: 45px; 
    29.     margin-left: 20px; 
    30.  
    31.   

    jltfIndex.js

    1. export default { 
    2.     data: { 
    3.     } 

    在第一个页面js文件中加入跳转的代码

    1. jltfclick() { 
    2.         router.replace({ 
    3.             uri:'pages/jltfindex/jltfindex' 
    4.         }); 
    5.     } 

     还得在配置文件中配置相关下一个页面的位置

    config.json找到图中js的位置

    1. "js": [ 
    2.   { 
    3.     "pages": [ 
    4.       "pages/index/index"
    5.       "pages/jltfindex/jltfindex" 
    6.     ], 
    7.     "name""default" 
    8.   } 

     加入"pages/jltfindex/jltfindex"下一个页面位置即可

    wearable模拟器上的代码案例


    新建项目选择模板进行下一步。


    显示效果:


    点击“点击了解更多”进入下一个页面


    代码如下:

    第一个页面

    1. Index.hml 
    2.  
    3. "container"
    4.     "jltftxt"
    5.        蛟龙腾飞 
    6.      
    7.     "/common/index22.png" class="jltfimg"/> 
    8.     "jltftxt1"
    9.         带你从传统的互联网、移动互 
    10.      
    11.     "jltftxt2"
    12.         联网时代. 跳转到万物互联的智 
    13.      
    14.     "jltftxt3"
    15.          能世界!。马上创建体验个人、 
    16.      
    17.     "jltftxt4"
    18.         公司或组织的鸿蒙应用吧! 
    19.      
    20.     "jltfbtn"type="button" value="点击了解更多" onclick="jltfclick"/> 
    21.  

     Index.css

    1. .container { 
    2.     flex-direction: column
    3.     width: 454px; 
    4.     height: 454px; 
    5.     justify-content: center; 
    6.     align-items: center; 
    7. .jltftxt { 
    8.      margin-left: -180px; 
    9.      margin-bottom: 10px; 
    10. .jltftxt1 { 
    11.     width: 400px; 
    12.     font-size: 30px; 
    13.  
    14. .jltftxt4 { 
    15.     margin-left: 5px; 
    16. .jltfimg { 
    17.     width: 138px; 
    18.     height: 103px; 
    19.     margin-left: 5px; 
    20. .jltfbtn { 
    21.     height: 60px; 
    22.     width: 280px; 
    23.     margin-bottom: -60px; 
    24. .jltftxt1,.jltftxt2,.jltftxt3,.jltftxt4{ 
    25.     font-size: 30px; 

     Index.js 

    1. import router from '@system.router' 
    2.  
    3. export default { 
    4.     data: { 
    5.  
    6.     }, 
    7.     jltfclick() { 
    8.         router.replace({ 
    9.             uri:'pages/jltfindex/jltfindex' 
    10.         }); 
    11.     } 
    12.  
    13.   

     Jltfidnex.hml

    1. "container"
    2.     "jltftxt"
    3.         蛟龙腾飞 
    4.      
    5.     "/common/index16.jpg" class="jltfimg"/> 
    6.     "jltftxt1"
    7.         你好,欢迎来到鸿蒙时代! 
    8.      
    9.     "jltftxt2"
    10.         蛟龙腾飞,鸿蒙先行者,全心全 
    11.      
    12.     "jltftxt3"
    13.         意为你提供鸿蒙各项服务! 
    14.      
    15.  
     

     Jltfindex.css

    1. .container { 
    2.     flex-direction: column
    3.     width: 454px; 
    4.     height: 454px; 
    5.     justify-content: center; 
    6.     align-items: center; 
    7. .jltftxt { 
    8.     margin-left: -180px; 
    9.     margin-bottom: 10px; 
    10. .jltftxt1 { 
    11.     width: 400px; 
    12.     font-size: 30px; 
    13.     margin-left: 30px; 
    14. .jltfimg { 
    15.     width: 413px; 
    16.     height: 103px; 
    17.     margin-left: 8px; 
    18. .jltfbtn { 
    19.     width: 200px; 
    20.     margin-bottom: -70px; 
    21. .jltftxt1,.jltftxt2,.jltftxt3,.jltftxt4{ 
    22.     font-size: 30px; 

     Jltfindex.js

    1. export default { 
    2.     data: { 
    3.     } 

     然后进行页面跳转的配置

    在一个页面index.js中进行配置

    1. jltfclick() { 
    2.         router.replace({ 
    3.             uri:'pages/jltfindex/jltfindex' 
    4.         }); 
    5.     } 

     这样了还不能跳转,“wearable”和“litewearable”有不同,在litewearable中这样就可以进行跳转了,但是在wearable中还需要在config.json中进行配置,添加跳转的页面的地址

    1. "js": [ 
    2.   { 
    3.     "pages": [ 
    4.       "pages/index/index"
    5.       "pages/jltfindex/jltfindex" 
    6.     ], 
    7.     "name""default"
    8.     "window": { 
    9.       "designWidth": 454, 
    10.       "autoDesignWidth"false 
    11.     } 
    12.   } 

     找到图中位置添加

    1. "pages/jltfindex/jltfindex" 

    就可以了

    car模拟器上的代码案例

    新建项目选择模板进行下一步。


    显示效果:


    点击“点击了解更多”进入下一个页面


    代码如下:

    第一个页面的布局

    1. "1.0" encoding="utf-8"?> 
    2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
    3.     ohos:height="match_parent" 
    4.     ohos:width="match_parent" 
    5.     ohos:orientation="vertical"
    6.  
    7.     
    8.         ohos:width="match_parent" 
    9.         ohos:weight="1"
    10.         
    11.             ohos:width="match_content" 
    12.             ohos:height="match_content" 
    13.             ohos:text="蛟龙腾飞" 
    14.             ohos:text_size="20fp" 
    15.             ohos:top_margin="40px" 
    16.             ohos:left_margin="80px"/> 
    17.  
    18.      
    19.     
    20.         ohos:width="match_parent" 
    21.         ohos:weight="4" 
    22.         ohos:orientation="horizontal"
    23.         
    24.             ohos:height="match_parent" 
    25.             ohos:weight="1"
    26.             
    27.                 ohos:width="526px" 
    28.                 ohos:height="504px" 
    29.                 ohos:top_margin="-50px" 
    30.                 ohos:left_margin="20px" 
    31.                 ohos:image_src="$media:index20"/> 
    32.          
    33.         
    34.             ohos:height="match_parent" 
    35.             ohos:weight="2"
    36.             
    37.                 ohos:width="match_content" 
    38.                 ohos:height="match_content" 
    39.                 ohos:multiple_lines="true" 
    40.                 ohos:text="带你从传统的互联网、移动互联网时代 
    41.                                跳转到万物互联的智能世界! 
    42.                                           马上创建体验个人、公司或组织的鸿蒙应用吧!" 
    43.                 ohos:text_size="20fp" 
    44.                 ohos:top_margin="20px" 
    45.                 ohos:left_margin="60px"/> 
    46.             
    47.                 ohos:id="$+id:jltfbutton" 
    48.                 ohos:width="match_content" 
    49.                 ohos:height="match_content" 
    50.                 ohos:text="点击了解更多" 
    51.                 ohos:text_size="25fp" 
    52.                 ohos:top_margin="60px" 
    53.                 ohos:left_margin="650px" 
    54.                 ohos:text_color="red"/> 
    55.          
    56.  
    57.      
    58.  
    59.  

     第二个页面的布局

    1. "1.0" encoding="utf-8"?> 
    2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
    3.     ohos:height="match_parent" 
    4.     ohos:width="match_parent" 
    5.     ohos:orientation="vertical"
    6.  
    7.     
    8.         ohos:width="match_parent" 
    9.        ohos:weight="1" 
    10.         > 
    11.         
    12.             ohos:width="match_content" 
    13.             ohos:height="match_content" 
    14.             ohos:text="蛟龙腾飞" 
    15.             ohos:text_size="20fp" 
    16.             ohos:top_margin="40px" 
    17.             ohos:left_margin="80px"/> 
    18.  
    19.      
    20.     
    21.         ohos:width="match_parent" 
    22.         ohos:weight="4" 
    23.         ohos:orientation="horizontal"
    24.         
    25.             ohos:height="match_parent" 
    26.             ohos:weight="1"
    27.             
    28.                 ohos:width="357px" 
    29.                 ohos:height="360px" 
    30.                 ohos:top_margin="60px" 
    31.                 ohos:left_margin="100px" 
    32.                 ohos:image_src="$media:index4"/> 
    33.          
    34.         
    35.             ohos:height="match_parent" 
    36.             ohos:weight="2"
    37.             
    38.                 ohos:width="match_content" 
    39.                 ohos:height="match_content" 
    40.                 ohos:multiple_lines="true" 
    41.                 ohos:text="你好,欢迎来到鸿蒙时代! 
    42.                                     蛟龙腾飞,鸿蒙先行者,全心全意为你提供鸿蒙各项服务!" 
    43.                 ohos:text_size="20fp" 
    44.                 ohos:top_margin="60px" 
    45.                 ohos:left_margin="10px"/> 
    46.          
    47.  
    48.      
    49.  
    50.  
    51.  
    52. 然后绑定布局进行跳转 
    53.  
    54. Button button = (Button) findComponentById(ResourceTable.Id_jltfbutton); 
    55.  
    56. button.setClickedListener(new Component.ClickedListener() { 
    57.     @Override 
    58.     public void onClick(Component component) { 
    59.  
    60.         present(new jltftabletSlice(),new Intent()); 
    61.     } 
    62.  
    63.  
    64. }); 

     ©著作权归作者和HarmonyOS技术社区共同所有,如需转载,请注明出处,否则将追究法律责任

    想了解更多内容,请访问:

    51CTO和华为官方合作共建的鸿蒙技术社区

    https://harmonyos.51cto.com/

     

    来源:鸿蒙社区内容投诉

    免责声明:

    ① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

    ② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

    软考中级精品资料免费领

    • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

      难度     813人已做
      查看
    • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

      难度     354人已做
      查看
    • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

      难度     318人已做
      查看
    • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

      难度     435人已做
      查看
    • 2024年上半年系统架构设计师考试综合知识真题

      难度     224人已做
      查看

    相关文章

    发现更多好内容

    猜你喜欢

    AI推送时光机
    位置:首页-资讯-后端开发
    咦!没有更多了?去看看其它编程学习网 内容吧
    首页课程
    资料下载
    问答资讯