我有像JSON一样的
{
"id": "58d99ca3231f13b9ecbbbca4",
"50records": [
{
"aomsLineNbr": 1,
"licenses": [
{
"productKey": "84fc2cde-9735-4cea-b97a-3cd627d3d0a5",
"aid": "someAid"
}
]
}
]
}
我想在aid
的基础上获取记录。
50record
可以包含多个对象,licenses
也可以包含多个对象。
"SELECT * FROM orders o WHERE o['50records'][0].licenses[0].aid='someAid'"
50records
和licenses
来搜索所有可用对象中的aid
?以下是我的商店程序:
function getOrdersByAidCollection(aid){
var context = getContext();
var collection = context.getCollection();
var link = collection.getSelfLink();
var response = context.getResponse();
var query = "SELECT * FROM orders o WHERE o['50records'][0].licenses[0].aid='"+aid+"'";
var isAccepted = collection.queryDocuments(collection.getSelfLink(),query,
function (err, feed, options) {
if (err) {
return errorResponse(400, err.message);
}
if (!feed || !feed.length){
return errorResponse(400, "no orders doc found");
}else {
getContext().getResponse().setBody(JSON.stringify(feed));
}
});
if (!isAccepted){
return errorResponse(400, "The query was not accepted by the server.");
}
}
我需要在哪里以及如何设置循环?
任何帮助都会很明显!
由于
答案 0 :(得分:3)
为什么需要循环?这看起来像一个查询问题。你能尝试这样的查询:
from PIL import Image
im = Image.open(model.file)
im.verify()
谢谢!