CakePHP和ViewerJS

时间:2015-03-03 18:12:27

标签: javascript cakephp viewer

关于如何将CakePHP 2.6和ViewerJS集成到iFrame中的任何想法?

下面的代码显示了一个空的ViewerJS帧。

如果我尝试仅显示资源,则可行。我有与ViewerJS和文件的正确路径,但它仍然无法正常工作。

<iframe src="<?php echo $this->webroot; ?>ViewerJS/#../<?php echo $atividade['Atividade']['caminho'] ?>" 
width='400' height='300' allowfullscreen webkitallowfullscreen></iframe>

2 个答案:

答案 0 :(得分:0)

简单试试这个

$iframeUrl = WWW_ROOT."ViewerJS/#../".$atividade['Atividade']['caminho'];

<iframe src="<?php echo $this->Html->url($iframeUrl)?>" 
        allowfullscreen 
        webkitallowfullscreen
        height="400" 
        width="300">
</iframe>

答案 1 :(得分:0)

我开始工作的唯一方法:

<?php
    $iframeUrl =$this->webroot;
    $iframeUrl.='app/ViewerJS/#../';
    $iframeUrl.=$atividade['Atividade']['caminho'];
?>

<iframe src="<?php echo $iframeUrl ?>"
    width='400' height='300'
    allowfullscreen
    webkitallowfullscreen>
</iframe>