ts-universal-attributes-component-id.md 8.4 KB
Newer Older
Z
zengyawen 已提交
1 2
# 组件标识

3 4 5
id为组件的唯一标识,在整个应用内唯一。本模块提供组件标识相关接口,可以获取指定id组件的属性,也提供向指定id组件发送事件的功能。

>  **说明:**
H
HelloCrease 已提交
6 7
>
>  - 从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
8 9 10 11 12 13 14 15 16


## 权限列表




## 属性

H
HelloCrease 已提交
17 18 19
| 名称   | 参数说明   | 默认值  | 描述                 |
| ---- | ------ | ---- | ------------------ |
| id   | string | ''   | 组件的唯一标识,唯一性由使用者保证。 |
Z
zengyawen 已提交
20 21 22 23 24 25 26 27 28 29


## 接口


### getInspectorByKey

getInspectorByKey(id: string): string

获取指定id的组件的所有属性,不包括子组件信息。
Z
zcdqs 已提交
30
此接口为系统接口。
Z
zengyawen 已提交
31 32

- 参数
H
HelloCrease 已提交
33 34 35
  | 参数   | 类型     | 必填   | 默认值  | 描述          |
  | ---- | ------ | ---- | ---- | ----------- |
  | id   | string | 是    | -    | 要获取属性的组件id。 |
Z
zengyawen 已提交
36 37

- 返回值
H
HelloCrease 已提交
38 39 40
  | 类型     | 描述              |
  | ------ | --------------- |
  | string | 组件属性列表的JSON字符串。 |
Z
zengyawen 已提交
41

42 43 44 45 46
### getInspectorTree

getInspectorTree(): string

获取组件树及组件属性。
Z
zcdqs 已提交
47
此接口为系统接口。
48 49 50

- 返回值

H
HelloCrease 已提交
51 52
  | 类型     | 描述                  |
  | ------ | ------------------- |
53
  | string | 组件树及组件属性列表的JSON字符串。 |
Z
zengyawen 已提交
54 55 56 57 58 59

### sendEventByKey

sendEventByKey(id: string, action: number, params: string): boolean

给指定id的组件发送事件。
Z
zcdqs 已提交
60
此接口为系统接口。
Z
zengyawen 已提交
61 62

- 参数
H
HelloCrease 已提交
63 64 65 66 67
  | 参数     | 类型     | 必填   | 默认值  | 描述                                       |
  | ------ | ------ | ---- | ---- | ---------------------------------------- |
  | id     | string | 是    | -    | 要触发事件的组件的id。                             |
  | action | number | 是    | -    | 要触发的事件类型,目前支持取值:<br/>-&nbsp;点击事件Click:&nbsp;10<br/>-&nbsp;长按事件LongClick:&nbsp;11。 |
  | params | string | 是    | -    | 事件参数,无参数传空字符串&nbsp;""。                   |
Z
zengyawen 已提交
68 69

- 返回值
H
HelloCrease 已提交
70 71 72
  | 类型      | 描述                             |
  | ------- | ------------------------------ |
  | boolean | 找不到指定id的组件时返回false,其余情况返回true。 |
Z
zengyawen 已提交
73

74 75 76 77 78
### sendTouchEvent

sendTouchEvent(event: TouchObject): boolean

发送触摸事件。
Z
zcdqs 已提交
79
此接口为系统接口。
80 81 82

- 参数

H
HelloCrease 已提交
83 84 85
  | 参数    | 类型          | 必填   | 默认值  | 描述                                       |
  | ----- | ----------- | ---- | ---- | ---------------------------------------- |
  | event | TouchObject | 是    | -    | 触发触摸事件的位置,event参数见[TouchEvent](ts-universal-events-touch.md#touchevent对象说明)中TouchObject的介绍。 |
86 87 88

- 返回值

H
HelloCrease 已提交
89 90
  | 类型      | 描述                         |
  | ------- | -------------------------- |
91 92 93 94 95 96 97
  | boolean | 事件发送失败时返回false,其余情况返回true。 |

### sendKeyEvent

sendKeyEvent(event: KeyEvent): boolean

发送按键事件。
Z
zcdqs 已提交
98
此接口为系统接口。
99 100 101

- 参数

H
HelloCrease 已提交
102 103 104
  | 参数    | 类型       | 必填   | 默认值  | 描述                                       |
  | ----- | -------- | ---- | ---- | ---------------------------------------- |
  | event | KeyEvent | 是    | -    | 按键事件,event参数见[KeyEvent](ts-universal-events-key.md#keyevent对象说明)介绍。 |
105 106 107

- 返回值

H
HelloCrease 已提交
108 109
  | 类型      | 描述                          |
  | ------- | --------------------------- |
110 111 112 113 114 115 116
  | boolean | 事件发送失败时时返回false,其余情况返回true。 |

### sendMouseEvent

sendMouseEvent(event: MouseEvent): boolean

发送鼠标事件。
Z
zcdqs 已提交
117
此接口为系统接口。
118 119 120

- 参数

H
HelloCrease 已提交
121 122 123
  | 参数    | 类型         | 必填   | 默认值  | 描述                                       |
  | ----- | ---------- | ---- | ---- | ---------------------------------------- |
  | event | MouseEvent | 是    | -    | 鼠标事件,event参数见[MouseEvent](ts-universal-mouse-key.md#mouseevent对象说明)介绍。 |
124 125 126

- 返回值

H
HelloCrease 已提交
127 128
  | 类型      | 描述                          |
  | ------- | --------------------------- |
129
  | boolean | 事件发送失败时时返回false,其余情况返回true。 |
Z
zengyawen 已提交
130 131 132

## 示例

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
```ts
// xxx.ets
class Utils {
  static rect_left;
  static rect_top;
  static rect_right;
  static rect_bottom;
  static rect_value;

  static getComponentRect(key) {
    let strJson = getInspectorByKey(key);
    let obj = JSON.parse(strJson);
    console.info("[getInspectorByKey] current component obj is: " + JSON.stringify(obj));
    let rectInfo = JSON.parse('[' + obj.$rect + ']')
    console.info("[getInspectorByKey] rectInfo is: " + rectInfo);
    this.rect_left = JSON.parse('[' + rectInfo[0] + ']')[0]
    this.rect_top = JSON.parse('[' + rectInfo[0] + ']')[1]
    this.rect_right = JSON.parse('[' + rectInfo[1] + ']')[0]
    this.rect_bottom = JSON.parse('[' + rectInfo[1] + ']')[1]
    return this.rect_value = {
      "left": this.rect_left, "top": this.rect_top, "right": this.rect_right, "bottom": this.rect_bottom
    }
  }
}

Z
zengyawen 已提交
158 159 160
@Entry
@Component
struct IdExample {
161 162
  @State text: string = ''

Z
zengyawen 已提交
163 164
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
165

Z
zengyawen 已提交
166
      Button() {
167 168 169 170 171 172 173 174 175 176
        Text('onKeyTab').fontSize(25).fontWeight(FontWeight.Bold)
      }.margin({ top: 20 }).backgroundColor('#0D9FFB')
      .onKeyEvent(() => {
        this.text = "onKeyTab"
      })

      Button() {
        Text('click to start').fontSize(25).fontWeight(FontWeight.Bold)
      }.margin({ top: 20 })
      .onClick(() => {
Z
zengyawen 已提交
177 178
        console.info(getInspectorByKey("click"))
        console.info(getInspectorTree())
179
        this.text = "Button 'click to start' is clicked"
Z
zengyawen 已提交
180 181 182 183 184 185
        setTimeout(() => {
          sendEventByKey("longclick", 11, "")
        }, 2000)
      }).id('click')

      Button() {
186 187
        Text('longclick').fontSize(25).fontWeight(FontWeight.Bold)
      }.margin({ top: 20 }).backgroundColor('#0D9FFB')
Z
zengyawen 已提交
188
      .gesture(
189 190 191 192 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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
      LongPressGesture().onActionEnd(() => {
        console.info('long clicked')
        this.text = "Button 'longclick' is longclicked"
        setTimeout(() => {
          let rect = Utils.getComponentRect('onTouch')
          let touchPoint: TouchObject = {
            id: 1,
            x: rect.left + (rect.right - rect.left) / 2,
            y: rect.top + (rect.bottom - rect.top) / 2,
            type: TouchType.Down,
            screenX: rect.left + (rect.right - rect.left) / 2,
            screenY: rect.left + (rect.right - rect.left) / 2,
          }
          sendTouchEvent(touchPoint)
          touchPoint.type = TouchType.Up
          sendTouchEvent(touchPoint)
        }, 2000)
      })).id('longclick')

      Button() {
        Text('onTouch').fontSize(25).fontWeight(FontWeight.Bold)
      }.type(ButtonType.Capsule).margin({ top: 20 })
      .onClick(() => {
        console.info('onTouch is clicked')
        this.text = "Button 'onTouch' is clicked"
        setTimeout(() => {
          let rect = Utils.getComponentRect('onMouse')
          let mouseEvent: MouseEvent = {
            button: MouseButton.Left,
            action: MouseAction.Press,
            x: rect.left + (rect.right - rect.left) / 2,
            y: rect.top + (rect.bottom - rect.top) / 2,
            screenX: rect.left + (rect.right - rect.left) / 2,
            screenY: rect.top + (rect.bottom - rect.top) / 2,
            timestamp: 1,
            target: {
              area: {
                width: 1,
                height: 1,
                position: {
                  x: 1,
                  y: 1
                },
                globalPosition: {
                  x: 1,
                  y: 1
                }
              }
            },
            source: SourceType.Mouse
          }
          sendMouseEvent(mouseEvent)
        }, 2000)
      }).id('onTouch')

      Button() {
        Text('onMouse').fontSize(25).fontWeight(FontWeight.Bold)
      }.margin({ top: 20 }).backgroundColor('#0D9FFB')
      .onMouse(() => {
        console.info('onMouse')
        this.text = "Button 'onMouse' in onMouse"
        setTimeout(() => {
          let keyEvent: KeyEvent = {
            type: KeyType.Down,
            keyCode: 2049,
            keyText: 'tab',
            keySource: 4,
            deviceId: 0,
            metaKey: 0,
            timestamp: 0
          }
          sendKeyEvent(keyEvent)
        }, 2000)
      }).id('onMouse')

      Text(this.text).fontSize(25).padding(15)
Z
zengyawen 已提交
265
    }
266
    .width('100%').height('100%')
Z
zengyawen 已提交
267 268 269
  }
}
```