如何将对象作为参数传递到CosmosDB存储过程
我正在尝试测试CosmosDB SQL Collection的存储过程,并且无法将对象作为参数传递。 存储过程代码:
/*
@function
@param {object} input
*/
function sample(input) {
var collection = getContext().getCollection();
if (!input) throw new Error("The input is undefined or null.");
console.log(input);
console.log(input.a);
}
我使用{a:1}
我希望得到:
" {A:1} 1"
但我得到了:
" {A:1}未定义"