---
sourceDocument: Xanadu API 참조
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/xanadu/api-reference

 Release :

    - xanadu

ft:locale :

    - ko-KR

ft:publication_title :

    - Xanadu API 참조

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# spAriaUtil - 클라이언트

# spAriaUtil - 클라이언트 {#ariaid-title1}

* 릴리스 버전: Xanadu
* 
* 업데이트 날짜 2024년 08월 01일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 1분

spAriaUtil API는 화면 읽기 프로그램에 메시지를 표시하는 메서드를 제공합니다.

이 API는 위젯 클라이언트 스크립트에서 서비스 포털 사용할 수 있는 Angular 서비스입니다.

## spAriaUtil - sendLiveMessage(문자열 메시지) {#ariaid-title2}

화면 판독기에 메시지를 알립니다.
sendLiveMessage() 메서드는 페이지의 aria-live 영역에 텍스트를 삽입합니다. aria-live 영역의 기본 설정은 `assertive`이며, 이는 메시지가 즉시 발표됨을 의미합니다. 너무 자주 사용하면 사용자를 짜증나게 하고 혼란스럽게 할 수 있습니다.
{#SPAU-sendLiveMessage_S__table_rb1_1wl_pz__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| 메시지 | 문자열 | 표시할 메시지입니다. |
[표 1. 매개변수]

{#SPAU-sendLiveMessage_S__table_rb1_1wl_pz} {#SPAU-sendLiveMessage_S__table_sb1_1wl_pz__entry__2}

| 유형 | 설명 |
|-|-|
| void |   |
[표 2. 반환]

{#SPAU-sendLiveMessage_S__table_sb1_1wl_pz}  

    function(spAriaUtil) {
      /* widget controller */

      spAriaUtil.sendLiveMessage('Hello world!');
    }


