我需要从haxe代码运行powershell脚本并返回数据。我会在我的代码中使用这些数据。
我怎么能这样做?
答案 0 :(得分:2)
您可以从Neko运行var element = $('[aria-controls!="dog"]')
。
查看api文档
http://api.haxe.org/sys/io/Process.html
要查看如何使用它的示例,请检查此 http://code.haxe.org/category/macros/add-git-commit-hash-in-build.html
在你的情况下,它看起来像这样
sys.io.Process
注意:我不确定你是否真的需要PowerShell,因为你可以用这个来执行stuff命令行。
我希望这有帮助!