尝试找出是否可以使用本机代码(使用N-API)运行firebase云功能。我有一个简单的“ hello world”示例,可以在模拟器下正常运行,但是当我尝试部署它时,出现INVALID_ARGUMENT错误:
status: {
code: 3
message: "INVALID_ARGUMENT"
}
那不是很有信息... 只是想知道是否有人可以阐明这种情况。谢谢!
这是函数:
'use strict';
const functions = require('firebase-functions');
exports.helloWorld = functions.https.onRequest(async(request, response) => {
console.time('Program runtime');
const testAddon = require('bindings')('testaddon.node')
const {promisify} = require('util');
module.exports = testAddon;
const asyncCommand = testAddon.hello();
try {
const result = await asyncCommand;
console.log('CONTENT:', result);
response.send(result);
}
catch (err) {
console.log('ERROR:', err);
response.send('ERROR:', err);
}
console.timeEnd('Program runtime');
});
和相应的C ++源代码:
#include <napi.h>
namespace functionexample {
std::string hello();
Napi::String HelloWrapped(const Napi::CallbackInfo& info);
Napi::Object Init(Napi::Env env, Napi::Object exports);
}
#include "functionexample.h"
std::string functionexample::hello(){
return "Hello World";
}
Napi::String functionexample::HelloWrapped(const Napi::CallbackInfo& info)
{
Napi::Env env = info.Env();
Napi::String returnValue = Napi::String::New(env, functionexample::hello());
return returnValue;
}
Napi::Object functionexample::Init(Napi::Env env, Napi::Object exports)
{
exports.Set(
"hello", Napi::Function::New(env, functionexample::HelloWrapped)
);
return exports;
}
答案 0 :(得分:0)
我猜问题是testaddon.hello()没有返回承诺,所以等待它是一个问题。如果addon.hello()是异步javascript函数,则javascript会确保它返回了promise,但它是C ++函数。
我以前没有使用过插件的promise,但这可能有帮助:
https://github.com/nodejs/node-addon-api/blob/master/doc/promises.md
答案 1 :(得分:0)
似乎问题出在节点引擎的版本上。我已切换到node10而不是node8,并且我的测试功能已正确部署并按预期工作。
答案 2 :(得分:0)
从Node.js v8.6.0开始,N-API已被标记为稳定的API,因此,如果您使用Node.js运行时的早期版本,则可能会遇到此处报告的问题。这是因为切换到Node.js版本10效果很好。