This is the JSON I'm parsing,目前我正在尝试获取图像的Logs.find(
{
application: { $in: <one particular item from the array>},
hash: <the hash from the SAME item from that array>
}
);
值。但是,从JSON来看,url
值不是完整的url,只是看起来像它的最后一部分。当我尝试使用url
来获取图像时,这显然是一个问题。例如,url
值之一是url
。我猜我应该使用字符串插值法将最后一部分插入另一个URL,但是我不确定这是什么,the documentation中什么也没说。
如何找到网址的第一部分?