0
我剛剛開始使用Windows Azure進行開發。到目前爲止很好,但我堅持一個非常基本的問題:如何從移動服務腳本插入到不同的表中的項目?我已經在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()
{
}
});
}
什麼我做錯了任何想法或在那裏我能找到的語法一些幫助使用?謝謝!