云函数很简单
[EngineFunction("Hello")]
public static string Hello([EngineFunctionParameter("text")]string text)
{
return $"Hello, {text}";
}
我使用postman测试没有任何问题,用js的sdk调用一直进入失败,错误消息是空的
var paramsJson = {
text: "测试"
};
AV.Cloud.run('Hello', paramsJson).then(function (data) {
console.log('调用Hello成功 >>>>>>>>>>>>>>>>>>>>>>>>>');
}, function (err) {
console.log('调用Hello失败 ******************');
});