Vibe.d - 无法为rest api生成JS脚本

时间:2017-08-23 17:12:10

标签: javascript rest d vibed

我试图为我的简单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。我在寻找错误的地方 - 应用项目的主要树吗?

1 个答案:

答案 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();
}