我在 Windows Azure 移动服务中工作。我有 2 个表计划 1:N 订阅(一个计划有很多订阅相关,一个订阅有一个计划相关)。我对 JS 服务器脚本不是很熟悉。当我插入一个新的订阅时,我需要查询这个新订阅所具有的计划(planId 来自订阅对象中的客户端)。所以我有这个:
function insert(item, user, request)
{
var planTable = tables.getTable("Plan");
//Here I want to select the plan from planTable using item.PlanId
request.execute();
}