start-with-ets.md 8.3 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# 使用eTS语言开发


> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 请使用**DevEco Studio V3.0.0.601 Beta1**及更高版本。
> 
> 为确保运行效果,本文以使用**DevEco Studio V3.0.0.900 Beta2**版本为例,点击[此处](https://developer.harmonyos.com/cn/develop/deveco-studio#download_beta)获取下载链接。


## 创建eTS工程

1. 打开**DevEco Studio**,点击**File** > **New > Create Project**,选择模板“**Empty Ability**”,点击**Next**进行下一步配置。
   ![zh-cn_image_0000001260189591](figures/zh-cn_image_0000001260189591.png)

2. 进入配置工程界面,**UI Syntax**选择“**eTS**”,其他参数保持默认设置即可。
   ![zh-cn_image_0000001217063248](figures/zh-cn_image_0000001217063248.png)

3. 点击**Finish**,工具会自动生成示例代码和相关资源,等待工程创建完成。


## eTS工程项目文件

23
- **entry** :OpenHarmony工程模块,编译构建生成一个Hap包。
Z
zengyawen 已提交
24
  - **src > main > ets** :用于存放ets源码。
Z
zengyawen 已提交
25 26 27
  - **src > main > ets > MainAbility** :应用/服务的入口。
  - **src > main > ets > MainAbility > pages** :MainAbility包含的页面。
  - **src > main > ets >  MainAbility > app.ets** :承载Ability生命周期。
Z
zengyawen 已提交
28 29 30 31
  - **src > main > resources** :用于存放应用/服务所用到的资源文件,如图形、多媒体、字符串、布局文件等。
  - **src > main >config.json** :模块配置文件。主要包含HAP包的配置信息、应用在具体设备上的配置信息以及应用的全局配置信息。
  - **build-profile.json5** :模块的模块信息 、编译信息配置项,包括 buildOption target配置等。
  - **hvigorfile.js** :模块级编译构建任务脚本,开发者可以自定义相关任务和代码实现。
32 33
- **build-profile.json5** :应用级配置信息,包括签名、产品配置等。
- **hvigorfile.js** :应用级编译构建任务脚本。
Z
zengyawen 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97


## 构建第一个页面

1. **文本组件。**
   工程同步完成后,在“**Project**”窗口,点击“**entry > src > main > ets > MainAbility > pages**”,打开“**index.ets**”文件,可以看到页面由Text组件组成。“**index.ets**”文件的示例如下:

   
   ```
   @Entry
   @Component
   struct Index {
     @State message: string = 'Hello World'
   
     build() {
       Row() {
         Column() {
           Text(this.message)
             .fontSize(50)
             .fontWeight(FontWeight.Bold)
         }
         .width('100%')
       }
       .height('100%')
     }
   }
   ```

2. **添加按钮。**
   在默认页面基础上,我们添加一个Button组件,作为按钮接受用户点击的动作,从而实现跳转到另一个页面。“**index.ets**”文件的示例如下:

   
   ```
   @Entry
   @Component
   struct Index {
     @State message: string = 'Hello World'
   
     build() {
       Row() {
         Column() {
           Text(this.message)
             .fontSize(50)
             .fontWeight(FontWeight.Bold)
           // 添加按钮,以接受用户点击
           Button(){
             Text('Next')
             .fontSize(30)
             .fontWeight(FontWeight.Bold)
           }.type(ButtonType.Capsule)
           .margin({
             top:20
           })
           .backgroundColor('#0D9FFB')
           .width('40%')
           .height('5%')
         }
         .width('100%')
       }
       .height('100%')
     }
   }
   ```

98
3. **在编辑窗口右上角的侧边工具栏,点击Previewer,打开预览器。** 第一个页面效果如下图所示:
99

Z
zengyawen 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
   ![zh-cn_image_0000001216239356](figures/zh-cn_image_0000001216239356.png)


## 构建第二个页面

1. **创建第二个页面。**
   在“**Project**”窗口,打开“**entry > src > main > ets > MainAbility**”,右键点击“**pages**”文件夹,选择“**New > Page**”,命名为“**second**”,点击“**Finish**”,即完成第二个页面的创建。可以看到文件目录结构如下:

   ![zh-cn_image_0000001261233671](figures/zh-cn_image_0000001261233671.png)

2. **添加文本及按钮。**
   参照第一个页面,在第二个页面添加Text组件、Button组件等,并设置其样式。“**second.ets**”文件的示例如下:

   
   ```
   @Entry
   @Component
   struct Second {
     @State message: string = 'Hi there'
   build() {
     Row() {
       Column() {
         Text(this.message)
           .fontSize(50)
           .fontWeight(FontWeight.Bold)
         Button() {
           Text('Back')
             .fontSize(25)
             .fontWeight(FontWeight.Bold)
         }.type(ButtonType.Capsule)
         .margin({
           top: 20
         })
         .backgroundColor('#0D9FFB')
         .width('40%')
         .height('5%')
       }
       .width('100%')
     }
     .height('100%')
   }
   }
   ```


## 实现页面间的跳转

页面间的导航可以通过页面路由router来实现。页面路由router根据页面uri找到目标页面,从而实现跳转。使用页面路由请导入router模块。

1. **第一个页面跳转到第二个页面。**
Z
zengyawen 已提交
150
   在第一个页面中,跳转按钮绑定onClick方法,点击按钮时跳转到第二页。“**index.ets**”文件的示例如下:
Z
zengyawen 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

   
   ```
   import router from '@system.router';
   
   @Entry
   @Component
   struct Index {
     @State message: string = 'Hello World'
   
     build() {
       Row() {
         Column() {
           Text(this.message)
             .fontSize(50)
             .fontWeight(FontWeight.Bold)
           // 添加按钮,以接受用户点击
           Button(){
             Text('Next')
             .fontSize(30)
             .fontWeight(FontWeight.Bold)
           }.type(ButtonType.Capsule)
           .margin({
             top:20
           })
           .backgroundColor('#0D9FFB')
           .width('40%')
           .height('5%')
Z
zengyawen 已提交
179
           // 跳转按钮绑定onClicke方法,点击按钮时跳转到第二页
Z
zengyawen 已提交
180 181 182 183 184 185 186 187 188 189 190 191
           .onClick(()=>{
             router.push({uri:'pages/second'})
           })
         }
         .width('100%')
       }
       .height('100%')
     }
   }
   ```

2. **第二个页面返回到第一个页面。**
Z
zengyawen 已提交
192
   在第二个页面中,返回按钮绑定onClick方法,点击按钮时返回到第一页。“**second.ets**”文件的示例如下:
Z
zengyawen 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218

   
   ```
   import router from '@system.router';
   
   @Entry
   @Component
   struct Second {
       @State message: string = 'Hi there'
       build() {
           Row() {
               Column() {
                   Text(this.message)
                       .fontSize(50)
                       .fontWeight(FontWeight.Bold)
                   Button() {
                       Text('Back')
                           .fontSize(25)
                           .fontWeight(FontWeight.Bold)
                   }.type(ButtonType.Capsule)
                   .margin({
                       top: 20
                   })
                   .backgroundColor('#0D9FFB')
                   .width('40%')
                   .height('5%')
Z
zengyawen 已提交
219
                   // 返回按钮绑定onClicke方法,点击按钮时返回到第一页
Z
zengyawen 已提交
220 221 222 223 224 225 226 227 228 229 230
                   .onClick(()=>{
                       router.back()
                   })
               }
               .width('100%')
           }
           .height('100%')
       }
   }
   ```

231
3. **打开index.ets文件,点击预览器中的** ![zh-cn_image_0000001262219043](figures/zh-cn_image_0000001262219043.png) **按钮进行刷新。** 效果如下图所示:
Z
zengyawen 已提交
232 233 234 235 236 237 238 239 240 241
   ![zh-cn_image_0000001260684127](figures/zh-cn_image_0000001260684127.png)


## 使用真机运行应用

1. 将搭载OpenHarmony标准系统的开发板与电脑连接。

2. 点击**File >Project Structure** > **Project > Signing**界面勾选“**Automatically generate signing**”,等待自动签名完成即可,点击“**OK**”。如下图所示:
   ![zh-cn_image_0000001217365030](figures/zh-cn_image_0000001217365030.png)

242
3. 在编辑窗口右上角的工具栏,点击![zh-cn_image_0000001262206247](figures/zh-cn_image_0000001262206247.png) 按钮运行。效果如下图所示:
Z
zengyawen 已提交
243
   ![zh-cn_image_0000001217526428](figures/zh-cn_image_0000001217526428.png)
244

Z
zengyawen 已提交
245
恭喜您已经使用eTS语言开发完成了第一个OpenHarmony应用,来[探索更多的OpenHarmony功能](../application-dev-guide.md)吧。