我试图为我的简单REST API生成JS,例如:doc。我的示例代码:
import vibe.d;
import wbapi;
import std.array : appender;
import vibe.core.file;
void main()
{
// generate JS for access
auto test = appender!string;
auto settingsJS = new RestInterfaceSettings;
settingsJS.baseURL = URL("http://localhost/api/integration/");
generateRestJSClient!IfWhiteBlowerAPI(test, settingsJS);
}
和界面:
@path("/api/integration")
interface IfWhiteBlowerAPI
{
Json get();
string postDeaf(Json obj);
}
一切都在编译没有任何问题,但我无法在任何地方找到生成的JS。我在寻找错误的地方 - 应用项目的主要树吗?
答案 0 :(得分:0)
我在振动的IRC频道上获得帮助。有appender是"处理"生成JS数据。生成它之后,我们需要手动将其保存到文件中,如下工作示例:
import vibe.d;
import std.stdio;
import std.array : appender;
import vibe.core.file;
@path("/api/integration")
interface IfWhiteBlowerAPI
{
Json get();
string postDeaf(Json obj);
}
void main()
{
// generate JS for access
auto test = appender!string;
auto settingsJS = new RestInterfaceSettings;
settingsJS.baseURL = URL("http://localhost/api/integration/");
generateRestJSClient!IfWhiteBlowerAPI(test, settingsJS);
auto f = File("test.js", "w");
f.write(test.data);
f.close();
}