<script src="http://apps.bdimg.com/libs/angular.js/1.2.8/angular.min.js"></script>
<body ng-app="app" ng-controller="ctrl" >
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="305" height="205">
<param name="movie" value="http://video.gdxt.com/video/Flvplayer.swf?" />
<param name="quality" value="high" />
<param name="allowFullScreen" value="true" />
<param name="FlashVars" value="vcastr_file=http://video.gdxt.com/newsvideo/G420130817.flv&LogoText=test&BufferTime=3" />
<embed src="http://video.gdxt.com/video/Flvplayer.swf?" allowfullscreen="true" flashvars="vcastr_file=http://video.gdxt.com/newsvideo/G420130817.flv&LogoText=test" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="505" height="405"></embed>
</object>
</body>
<script>
var app=angular.module("app",[]);
app.controller("ctrl",function($scope)
{
$scope.videourl='http://video.gdxt.com/newsvideo/G420130817.flv';//视频链接
});
</script>
如果要把标签中的http://video.gdxt.com/newsvideo/G420130817.flv全部绑定在videourl,该怎么做?
例如我把value="vcastr_file=http://video.gdxt.com/newsvideo/G420130817.flv&LogoText=test&BufferTime=3" 换成value=|"{{'vcastr_file='+videourl+'&LogoText=test&BufferTime=3'}}"
但是还是不管用