我刚开始使用节点和表达,我需要一些帮助。
我正在尝试从api服务器(http://api.randomuser.me)获取数据并在我的视图中使用此数据。
我有一个api.js文件: `var Client = require(' node-rest-client')。客户端; var client = new Client();
{
"last_updated_time": null,
"logical_resource_id": "test2",
"physical_resource_id": "i-24tf97306",
"resource_type": "AWS::EC2::Instance",
"status": "CREATE_COMPLETE",
"status_reason": null
},
{
"last_updated_time": null,
"logical_resource_id": "test1",
"physical_resource_id": "i-6533184348",
"resource_type": "AWS::EC2::Instance",
"status": "CREATE_COMPLETE",
"status_reason": null
}
我需要在视图ejs中使用这个变量数据。但我只需要知道如何将此结果导致函数外的另一个变量。
非常感谢