如何使用 java 脚本在 oracle apex 中创建页面项数组?

How to create an array of page items in oracle apex using java script?

我想将页面项目名称存储到一个数组中。但我不想通过键入来添加所有名称。是否有可用的包或方法来保存顶点中的项目信息?我们可以访问吗?

const myPageItems = [];
allItems = apex.page.forEachPageItem;
allItems( $( "#wwvFlowForm" ), function( el, name ) {
        myPageItems.push(name);
    }, true );

前段时间有一个blog关于这个