如何在azure服务器中执行示例存储过程。
我正在使用cosmos db模拟器,每当我尝试执行一个示例sp时,我都会收到此错误
源自脚本的请求不能引用除提交客户端请求的分区密钥之外的分区密钥。
function createToDoItem(itemToCreate) {
var context = getContext();
var container = context.getCollection();
console.log("success");
var itemToCreate={
"Id": null,
"UserAccountID": "1742",
"FirstName": "Sanjeev",
"LastName": "S",
"Phone": "12345678",
"Location": "",
"StreetAddress": "vcbgvbvc",
};
itemToCreate.partitionKey = "UserAccountID";
var accepted = container.createDocument(container.getSelfLink(),
itemToCreate,
function (err, itemCreated) {
if (err) throw new Error('Error test' + err.message);
context.getResponse().setBody(itemCreated.id)
});
if (!accepted) return;
}
样本存储过程也无法获得所需的结果。链接问题here