POST
切换 Eagle 打开的资源库。
参数:
参数 | 说明 |
---|---|
libraryPath | 资源库路径 |
范例代码:
var data = {
"libraryPath": "/Users/augus/Pictures/Design.library"
};
var requestOptions = {
method: 'POST',
body: JSON.stringify(data),
redirect: 'follow'
};
fetch("http://localhost:41595/api/library/switch", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
返回结果:
{
"status": "success"
}