取消使用php从angularjs网站获取可变值

时间:2018-07-27 20:25:59

标签: php angularjs html5 audio

我正在为此创建一个音乐网站,当我尝试在URL中单击时传递歌曲名称并将其存储在播放中,然后将播放内容传递给html5 src时,我的代码仅在使用php时工作正常,但是使用angularjs,歌曲名称会添加到URL中,但是PHP代码无法从URL中获取值 我的代码是

    echo "<a href='#/?play=".$row1['title']."' > <img 
    src='upload/".$row1['songcover']."' title='".$row1['songcover']."'  
     width='200' height='200' style='padding:16px; border:1px solid #f1f1f1; 
    margin:16px'  alt='music' /></a>";
    echo "<label style='margin-left:20px';> $title</label>";

以及我如何从url获得价值

<?php 
  error_reporting(0);
  $play=$_GET['play']; 
?>

<audio autoplay
       style=" margin-top: 45%;margin-left:0;width:100%;position:fixed;"
       controls >
    <source src="upload/<?php echo $play; ?>" type="audio/mpeg" 
            style="width:100%; ">
        Your browser does not support the audio element.
</audio>

任何帮助将不胜感激。

0 个答案:

没有答案