我正在尝试制作一个 Rainmeter 插件来从http://miniature-calendar.com/下载每日图像
当我静态提供每日站点时,它会下载并显示图像,但是如果我尝试使用变量获取每日站点,它会失败并且不再下载。
我现在使用的代码:
[Rainmeter]
Update=1000
[MyMeter1]
Measure=Time
Format=%y%m%d
[MeasureImage]
Measure=Plugin
Plugin=Plugins\WebParser.dll
UpdateRate=120000
MeasureName=MyMeter1
DynamicVariables=1
Url=http://miniature-calendar.com/%1/
RegExp=(?siU)<div class="post-body">\s*<p><img src="(.*)" alt="" title="(.*)"
StringIndex=1
Download=1
DownloadFile=daily.jpg
这样,关于选项卡表明 WebParser 有一个空的 Url 并且不下载图像。但是,如果我说它Url=http://miniature-calendar.com/160113/
会下载适当的图像。
我应该改变什么才能让它工作?