Stackoverflow アクティビティ フィードを Web ページにプルするスクリプトを作成しています。次のようになります。
#!/usr/bin/perl
use strict;
use warnings;
use XML::Feed;
use Template;
my $stackoverflow_id = 1691146;
my $stackoverflow_url = "http://stackoverflow.com/feeds/user/$stackoverflow_id";
my $template = <<'TEMPLATE';
[% FOREACH item = items %]
[% item.title %]
[% END %]
TEMPLATE
my $tt = Template->new( 'STRICT' => 1 )
or die "Failed to load template: $Template::ERROR\n";
my $feed = XML::Feed->parse(URI->new($stackoverflow_url));
$tt->process( \$template, $feed )
or die $tt->error();
テンプレートはアクティビティ フィード (からXML::Feed->items()
) を反復し、それぞれのタイトルを出力する必要があります。このコードを実行すると、次のようになります。
var.undef error - undefined variable: items
それを機能させるには、process
行を次のように変更する必要がありました。
$tt->process( \$template, { 'items' => [ $feed->items ] } )
メソッドTemplate::Toolkit
を使用できないように見える理由を誰か説明できますか?XML::Feed->items()
私は似たような作業をしましたXML::RSS
:
my $rss = XML::RSS->new();
$rss->parse($feed);
$tt->process ( \$template, $rss )
or die $tt->error();