试图找出是否可以使用本机代码运行firebase云函数(使用N-API(。我有一个简单的"helloworld"示例,它在模拟器下运行良好,但当我尝试部署它时,会出现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;
}
我想问题是testaddon.hello((没有返回promise,所以等待它是个问题。如果addon.hello((是一个异步javascript函数,那么javascript会确保它返回promise,但它是一个C++函数。
我以前没有使用过来自插件的承诺,但这可能会有所帮助:
https://github.com/nodejs/node-addon-api/blob/master/doc/promises.md
问题似乎出在节点引擎的某个版本上。我已经切换到node10而不是node8,并且我的测试功能部署正确,工作正常。
N-API从Node.js v8.6.0开始就被标记为稳定的API,因此如果您使用Node.js运行时的早期版本,您可能会遇到这里报告的问题。这是因为切换到Node.js版本10都很好。