  
- 帖子
- 3167
- 积分
- 6481
- 技术
- 320
- 捐助
- 70
- 注册时间
- 2008-8-3
|
本帖最后由 523066680 于 2019-11-7 20:32 编辑
坐和放宽~
我最近都是用相结合的方式
# 金额信息合计, 此处 freight 为平台运费
$info->{price} = $dom->at("td.product-price")->text =~ /([\d\.]+)/ ? $1 : 0;
$info->{freight} = $dom->at("td.shipping-price")->text =~ /([\d\.]+)/ ? $1 : 0;
$info->{adjust} = $dom->at("td.change-price")->text =~ /([\d\.]+)/ ? $1 : 0;
$info->{discount} = $dom->at("td.discount-price")->text =~ /([\d\.]+)/ ? $1 : 0;
$info->{amount} = $dom->at("td.order-price")->text =~ /([\d\.]+)/ ? $1 : 0;
# 待定
$info->{escrowCom} = $dom->at("td.fee")->text =~ /([\d\.]+)/ ? $1 : 0;
$info->{unionCom} = "-";
$info->{estimate} = $dom->at(".fund-bd td.amount")->text =~ /([\d\.]+)/ ? $1 : 0; |
三目运算符用来避节点未定义的坑 |
|