ビュー ファイルには、flowplayer を使用して jQuery ダイアログで再生したいサウンドバイトがあります。プレーヤーが表示されないことを除いて、すべてが機能します。プレーヤーの SWF ファイルがある場所への URL を提供する必要がある場所に問題を絞り込みました。私は一生、プレイヤーが探している場所を特定できません。
要約すると、私のファイルは次のとおりです。
flowplayer スクリプト - /app/webroot/js/flowplayer/flowplayer-3.2.10.min.js
flowplayer SWF- /app/webroot/js/flowplayer/flowplayer-3.2.11.swf
次に、次のものがあります。
// Within the default.ctp in /app/view/layouts:
<script type="text/javascript">
// Audio player information:
$(document).ready(function() {
$(".player").click(function() {
$("<div></div>").load($(this).attr("href")).dialog();
return false;
});
});
</script>
// Example in a view file where I am calling the model view:
<?php
echo $this->Html->link($this->Html->image("icons/control_play_blue.png", array("alt" => "Play audio file")),array("controller" => "surveys", "action" => "audioplayer","questions",$question['Question']['ivr_recording_file'], $question['Question']['mime']),array('escape' => false, "class" => "player"));
?>
// Within the controller:
/*
* Audio player for IVR audio files for the site:
*
*/
public function audioplayer($type,$audio,$mime) {
$this->layout = false;
//$this->autoRender = false;
// Determine what type of file it is so that we can get the location:
if($type == "ivr") {
$location = "";
} else {
$location = "";
}
$file = $audio.".".$mime;
$this->set(compact("file","type"));
}
// Lastly, within the view of the controller call (this is where the URL is wrong)
<script type="text/javascript">
$(document).ready(function() {
flowplayer("player", "flowplayer-3.2.11.swf");
});
</script>
<?php
echo $this->Html->Link("","/files/uploads/".$type."/".$file,array("id" => "player"));
?>