如何在测试页中嵌入以下 VAST 代码?

How can I embed the following VAST tag in a test page?

假设我有一个用于前置大型视频的 VAST 广告代码。 当我在浏览器中输入VAST url时,VAST doc的内容包含:

...
<MediaFile delivery="progressive" width="500" height="300"
  type="application/javascript" apiFramework="VPAID">
   <![CDATA[
    http://path/to/some.js
   ]]>
</MediaFile>
...

如您所见,媒体文件的类型为 .js 而不是真正的媒体文件(例如 .mp4)

如何将此 VAST 代码嵌入到我的测试页中?

我不确定将其添加到我们的播放器播放列表是否是一个好的解决方案,因为据我了解, .js 文件本身包含对播放器的引用

使用 VAST 标签设置 JW Player 时,您可以这样做 - http://support.jwplayer.com/customer/portal/articles/1431665-basic-preroll-video-ads

jwplayer('myElement').setup({
  file: 'assets/myVideo.mp4',
  primary: 'flash',
  advertising: {
    client: 'vast',
    tag: 'http://adserver.com/vastResponse.xml'
  }
});