Windows Azure Mobile Services を使用するテーブルの 1 つの挿入スクリプトで、挿入したばかりの ID を取得し、それを使用して別のテーブルに子関連データを挿入したい (1 対多スタイル)
何か案が??前もって感謝します
サーバー スクリプト内に挿入した項目の ID も取得することに注意してください。
var theNewRow = {
youProperty1: 'inserted',
yourProperty2: 'in server script'
};
yourTable.insert(theNewRow, {
success: function()
{
console.log('the row id' + theNewRow.id);
}
});
function insert(item, user, request) {
request.execute({
success: function() {
var id = item.id;
console.log("The new item's id is: ", id);
request.respond();
}
});
}
Carlos は、次の投稿で 1:n 関係の操作について説明しています。実装-1-n-テーブル-relationships.aspx
余談ですが、モバイル サービス関連の投稿のコレクションは、aka.ms/CommonWAMS にあります。