我需要显示(并稍后打印)一个页面,其中包含一个包含条形码和每行描述的表格。
我有我的
$result = $mySql->query->fetchAll();
包含正确的数据。
起初我做了一个
$rendererOptions = array();
foreach($result as &$res){
$barcodeOptions = array(
'text' => $res['myParam'],
'rendererParams' => array('imageType' => 'gif'),);
$res['barcode'] = Zend_Barcode::factory('CODE39', 'image', $barcodeOptions, $rendererOptions)->draw();
}
$this->view->data = $result;
结果不好。然后我尝试了:
Zend_Barcode::render(....);
有许多组合,甚至是
$.post('/mycontroller/myactionthatrendersthebarcode',{code : this.id}, function(data){
$(this).html(data); });
在我的 .phtml 页面中(几乎杀死网络:D)
按照文档(http://framework.zend.com/manual/1.12/en/zend.barcode.creation.html)我只有一个但正确的条形码或一堆资源ID我不知道如何管理。
有什么建议吗?谢谢