我试图列出JXA对象的所有方法。我已经尝试了几种在浏览器中使用JavaScript的方法,但没有一种方法有效:
>> Object.getOwnPropertyNames(Application('Finder').selection()[0]);
=> ["__private__"]
>>
>> JSON.stringify(Application('Finder').selection()[0])
=> undefined
>>
>> console.dir(Application('Finder').selection()[0])
!! Error on line 1: TypeError: console.dir is not a function. (In 'console.dir(Application('Finder').selection()[0])', 'console.dir' is undefined)
>>
>> for(var m in Application('Finder').selection()[0]) { console.log(m); }
=> undefined
>>
>> console.log(Application('Finder').selection()[0])
2017-01-27 16:51:16.331 osascript[18617:633276] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFStringappendString:]: nil argument'
*** First throw call stack:
(
0 CoreFoundation 0x00007fff77feb0db __exceptionPreprocess + 171
1 libobjc.A.dylib 0x00007fff8cc7da2a objc_exception_throw + 48
2 CoreFoundation 0x00007fff780689c5 +[NSException raise:format:] + 197
####### SNIPPED FOR BREVITY ########
45 Foundation 0x00007fff799944ea -[NSRunLoop(NSRunLoop) run] + 76
46 osascript 0x000000010d4e0485 osascript + 9349
47 libdyld.dylib 0x00007fff8d55f255 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
/Users/example/Tools/my-tools/osascript: line 24: 18617 Abort trap: 6 reattach-to-user-namespace /usr/bin/osascript "$@"
如何获取JXA对象具有的所有方法的列表?
答案 0 :(得分:6)
您可以使用对象的properties()
方法获取对象属性的列表(具有相应的方法):
>> Application('Finder').selection()[0].properties()
=> {
"class":"documentFile",
"name":"gist.sh",
"index":12,
"displayedName":"gist.sh",
"nameExtension":"sh",
"extensionHidden":false,
"container":Application("Finder").startupDisk.folders.byName("Users").folders.byName("example").folders.byName("Tools").folders.byName("my-tools"),
"disk":Application("Finder").startupDisk,
"position":{
"x":-1,
"y":-1
},
"desktopPosition":null,
"bounds":{
"x":-33,
"y":-33,
"width":64,
"height":64
},
"kind":"shell script",
"labelIndex":0,
"locked":false,
"description":null,
"comment":"",
"size":804,
"physicalSize":4096,
"creationDate":Thu Jan 19 2017 13:47:43 GMT-0500 (EST),
"modificationDate":Thu Jan 19 2017 13:47:43 GMT-0500 (EST),
"icon":null,
"url":"file:///Users/example/Tools/my-tools/gist.sh",
"owner":"example",
"group":"(unknown)",
"ownerPrivileges":"read write",
"groupPrivileges":"read only",
"everyonesPrivileges":"read only",
"fileType":null,
"creatorType":null,
"stationery":false,
"productVersion":"",
"version":""
}
可以将这些属性中的任何一个称为检索值的方法:
>> Application('Finder').selection()[0].owner()
=> "example"
>> Application('Finder').selection()[0].displayedName()
=> "gist.sh"
请注意,此列表不包含所有方法。此外,无法在所有对象上调用properties()
方法。
答案 1 :(得分:0)
Apple事件对象模型(“可编写脚本的应用程序”界面)是一个抽象的关系图,而不是OO DOM。它没有“方法”,它有RPC +简单的一流关系查询。
AEOM在当前的应用中并不是内省的。这是一个缺点之一,其中许多缺点可以追溯到整个事情是一个快速和肮脏的第一次削减一个非常大和雄心勃勃的问题,这很快就被白痴Apple管理层立即解散了团队v1.1发货,驱使其设计师退出。您可以做的最好的事情是选择文件>阅读应用程序的字典。在脚本编辑器中打开字典仍然严重不足,但你会得到最好的(特别是现在苹果看起来将在未来几年内完成整个过程)。
JXA是一个袋子o'balls。只是说。