2

是否可以通过 actionscript3 读取本网站的实时更新报价,而无需一直重新加载页面,这将是网络繁重的。

换句话说,是否可以将报价数据直接流式传输到 actionscript3 或最终从 javascript 传输到 PHP?

如果没有,是否有人对如何将这些报价转换为 actionscript 有任何建议?

4

2 回答 2

2

扩展西奥所说的......(我敢肯定有一种更巧妙的方法可以做到这一点,我会被谴责为黑客,但它确实有效)

我基本上只是提取了欧元/美元下红色的前两个数字。

这是放置在您的服务器上的名为 getContent.php 的 php 脚本

<?php

$handle = fopen("getVars.php", "r");

$contents = '';
    while (!feof($handle)) {
     $contents .= fread($handle, 8192);
}

$vars = explode("&",  $contents);
$time = substr($vars[2], 5);
$difference = abs(date(s)-$time);

if($difference>5)
{

    $handle = fopen("http://www.fxstreet.com/technical/currencies-glance/pair.aspx?id=EUR/USD", "r");

    $contents = '';
        while (!feof($handle)) {
         $contents .= fread($handle, 8192);
    }

    $contents=trim($contents);
    $pos1 = strpos($contents, 'lhtml_0" innerOnUpdate="att=BID" innerfilter="format_number">');
    $str1 = substr($contents, $pos1, 100);
    $cur1 =  substr($str1, 61, 6); 
    $pos2 = strpos($contents, 'lhtml_1" innerOnUpdate="att=ASK" innerfilter="format_number">');
    $str2 = substr($contents, $pos2, 100);
    $cur2 = substr($str2, 61, 6); 

    $cachedPage = fopen("getVars.php", "w");
    $varString = "cur1=$cur1&cur2=$cur2&time=".date(s);
    fwrite($cachedPage,$varString);
    fclose($cachedPage);
    echo "cur1=$cur1&cur2=$cur2&cached=false";
}
else
{
    $handle = fopen("getVars.php", "r");

    $contents = '';
        while (!feof($handle)) {
         $contents .= fread($handle, 8192);
    }

    echo $contents."&cached=true";
}

fclose($handle);
?>

然后是动作脚本

var updateTimer:Timer = new Timer(5000);
updateTimer.addEventListener(TimerEvent.TIMER, getQuotes);
updateTimer.start();
function getQuotes(e:Event):void
{
    var request:URLRequest = new URLRequest ("getContent.php");     
    var loader:URLLoader = new URLLoader (request);
    loader.addEventListener(Event.COMPLETE, onComplete);
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.load(request);
}

function onComplete (event:Event):void
{
   var variables:URLVariables = new URLVariables( event.target.data );
   currency1.text = variables.cur1;
   currency2.text = variables.cur2;
}
var e:Event;
getQuotes(e);

你可以在这里看到它的作用...... http://www.hupcapstudios.com/getCurrency.swf

hack 部分是我在 php.ini 中解析页面。我不得不做一些严肃的子串动作。我敢肯定,任何具有相当大解析能力的人都可以编写更简洁的代码来提取您需要的所有数据。

我只是想我会尝试一下。祝你好运 :)

于 2009-10-06T03:49:23.843 回答
1

可能会创建一个服务器端脚本,每 5 秒左右检查一次站点的内容。该脚本可以解析出您要检索的“报价”的“缓存”版本。然后只需通过 URLRequests 从您的 Flash 应用程序中以较短的时间间隔请求此缓存内容。

于 2009-10-05T20:47:38.840 回答