我刚刚开始使用 Windows Azure 进行开发。到目前为止一切顺利,但我遇到了一个非常基本的问题:如何将项目插入到与移动服务脚本不同的表中?我在 Windows Azure 博客上找到的代码似乎不像宣传的那样工作:
function insert(item, user, request) {
var currentTable = tables.getTable('current'); // table for this script
var otherTable = tables.getTable('other'); // another table within the same db
var test = "1234";
request.execute(); // inserts the item in currentTable
// DOESN'T WORK: returns an Internal Server Error
otherTable.insert(test, {
success: function()
{
}
});
}
知道我做错了什么或在哪里可以找到有关使用语法的帮助吗?谢谢!