각 행에 바코드와 설명이 포함 된 테이블이있는 페이지를 표시하고 나중에 인쇄해야합니다.zend가있는 바코드가있는 테이블 얻기
나는 나의
$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;
했다. 그럼 난과 시도 : 워드 프로세서 (http://framework.zend.com/manual/1.12/en/zend.barcode.creation.html) I 다음
: 심지어 많은 조합
Zend_Barcode::render(....);
내로 .phtml 페이지에서
$.post('/mycontroller/myactionthatrendersthebarcode',{code : this.id}, function(data){
$(this).html(data); });
을 (D 거의 네트워크를 죽이는) 단 하나의,하지만 바코드 나 리소스가 많다. Ids 나는 어떻게 관리해야할지 모른다.
어떤 조언이 필요합니까? 감사합니다.
무슨 결과가'나쁜 결과? 예외/오류가 있습니까? – bitWorking
단순히 이미지 로고가 손상되거나 전혀 결과가 나타나지 않습니다. 내가 이해할 수있는 유일한 것은 그 일을하는 "논리적 인 방법"을 놓친다는 것입니다 ... – mauoftheclouds