いくつかの列と、挿入時に自動生成される ID 列を含む "Plan" テーブルを取得しました。挿入サーバー スクリプトで作業している場合、どうすれば ID を知ることができますか? Windows azure モバイル サービスに取り組んでいます。
function insert(item, user, request) {
//I want to know the ID of the new item to be inserted.
}
いくつかの列と、挿入時に自動生成される ID 列を含む "Plan" テーブルを取得しました。挿入サーバー スクリプトで作業している場合、どうすれば ID を知ることができますか? Windows azure モバイル サービスに取り組んでいます。
function insert(item, user, request) {
//I want to know the ID of the new item to be inserted.
}
id は、アイテムがデータベースに挿入されたときにのみ生成され、item
パラメーターに新しいプロパティとして追加されます。挿入操作でスクリプトへのコールバックを指定することで、これにアクセスできます。
function insert(item, user, request) {
request.execute({
success: function() {
var id = item.id;
console.log("The new item's id is: ", id);
request.respond();
}
});
}