콘텐츠로 이동

브라우저 JavaScript

Python SDK와 동일한 인터페이스를 브라우저에서 제공합니다. .skills/ 폴더에 index.html 파일만 만들고 “웹 미리보기”로 바로 실행할 수 있습니다.

<script src="/api/sdk/zio_ontology.js"></script>
<script>
(async () => {
// 고객 전체 목록 조회 → 테이블 렌더링
const customers = await Zio.node("Customer").fetch();
Zio.renderTable("#customer-table", customers);
})();
</script>