-1

更具体地说,此信息:http ://colejohnsoncreative.com/personal/ai/currentdegree.php

我想提取该数字(我所在城市的当前温度)并将其显示在对话框中,或者让我的计算机说出它。我想要这样的东西:

“它是currentDegree

,然后会说当前温度。

我被告知要使用curl,但我似乎找不到太多关于此的信息。

4

1 回答 1

0

您可以使用curlUnix 命令下载您的网页,如下所示:

property theURL : "http://colejohnsoncreative.com/personal/ai/currentdegree.php"

set theValue to do shell script "curl " & theURL
display dialog theValue buttons {"OK"} default button "OK"
于 2012-10-18T15:32:12.210 回答