Javascript:类似于PHP file_get_contents

时间:2016-05-26 11:17:33

标签: javascript php

enum virDomainState {

VIR_DOMAIN_NOSTATE  =   0   
no state
VIR_DOMAIN_RUNNING  =   1   
the domain is running
VIR_DOMAIN_BLOCKED  =   2   
the domain is blocked on resource
VIR_DOMAIN_PAUSED   =   3   
the domain is paused by user
VIR_DOMAIN_SHUTDOWN =   4   
the domain is being shut down
VIR_DOMAIN_SHUTOFF  =   5   
the domain is shut off
VIR_DOMAIN_CRASHED  =   6   
the domain is crashed
VIR_DOMAIN_PMSUSPENDED  =   7   
the domain is suspended by guest power management
VIR_DOMAIN_LAST =   8   
NB: this enum value will increase over time as new events are added to the libvirt API. It reflects the last state supported by this version of the libvirt API.

}

这是我非常简单的api,有点儿。我想以某种方式将其转换为JS。 PHP代码将激活URL,在API_LINK上我将存储来自URL的数据。

与JS或类似的解决方案完全相同是完美的。

0 个答案:

没有答案