Thread Bug in Text::vCard??? (6 answers)
Opened by harvey at 2009-03-26 16:56

harvey
 2009-03-26 16:56
#119853 #119853
User since
2007-10-06
16 Artikel
BenutzerIn
[default_avatar]
Warum funktioniert folgendes Stück Code nicht?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use Text::vCard;
use Text::vCard::Addressbook;

my $address_book = Text::vCard::Addressbook->new();

my $vcard = $address_book->add_vcard();
$vcard->fullname('Maxine Mustermann');
$addresses = $vcard->get({ 'node_type' => 'addresses' });
$addresses->[0]->street('The burrows');
$addresses->[0]->region('Wimbeldon common');

my $vcf_file = $address_book->export();
print ("$vcf_file");

Ich erhalte folgende Fehlermeldung:
Quote
Can't call method "street" on an undefined value at ./vcardclean.pl line 10.

Laut Manpage Text::vCard sollte das aber eigentlich so gehen... :(
Mache ich irgendwas falsch oder ist da ein bug im Modul?
Last edited: 2009-03-27 16:28:15 +0100 (CET)

View full thread Bug in Text::vCard???