各位,晚安!你能在这种情况下阻止我吗?我搜索了两天,但我找不到这样做的方法......
如何将参数传递给 Windows Azure 移动服务中的读取函数?
在下面的代码中,我调用了 read 函数,但我想通过 Parm1 在 Windos Azure 中进行操作。
[itemTable readWhere:predicate completion:^(NSArray *items, NSInteger totalCount, NSError *error) {
我想在 Windows Azure 中做这样的事情......
function read(query, user, request) {
var parm1 = query.parameters.Parm1;
request.execute();
}
谢谢帮助我。
保罗