duandanbeng1829 2013-05-17 20:21
浏览 586
已采纳

为什么file_get_contents()Javascript输出不执行?

Backstory: I'm trying to use the Newsletter Widget from SendGrid but they currently don't offer it using SSL. So any requests to https:// just redirect to http:// and then browsers complain about insecure content on my secure site.

Ok fine, so I implement something like this in PHP:

$output = file_get_contents('http://sendgrid.com/newsletter/getSubscriptionWidget?p=xxx');

And then in my view have this:

 <script type="text/javascript">
    <?php echo($output); ?>
 </script>

Viewing the source of this page after execution shows that it pulls the javascript widget code in just fine. BUT, it doesn't work. By "not working" I mean the javascript code never executes.

If I load it (in a non-https development environment) using the script tag like:

<script type="text/javascript" src="http://sendgrid.com/newsletter/getSubscriptionWidget?p=xxx">

Then it works just fine!

TL;DR; What would cause javascript to execute fine when loaded under the src attribute of the script element and not work when echoed as content inside script tags?

P.S. You can view the SendGrid widget source here.

  • 写回答

1条回答 默认 最新

  • doushi5913 2013-05-17 20:49
    关注

    SOLVED

    Turns out the SendGrid code checks to ensure the script tag is pointing at the script using this:

    // replace each instance
    $('script').each(function (wIdx, wElem) {
    var tag, src, table, trSubmit, tdSubmit, form, emailInput, message, params;
    
    tag = $(this);
    src = tag.attr('src');
    params = RegExp('p=' + '(.+?)(&|$)').exec(src);
    // check if corret script
    if ($.isArray(params) && params.length > 1 && key === params[1]) {
      form = $('<form />', {
        'class': 'SG_widget_form',
        'method': 'POST',
        'action': postURL,
        'accept-charset': 'UTF-8'
      });
      form.insertBefore(tag);
      tag.remove();
      message = $('<span />').insertBefore(form).hide();
    

    ... there is more after that, but that is the important piece. By adding the src attribute to the tag and pointing it at the correct location, the browser will block loading it normally, but will then execute the code I echoed with PHP inside of it.

    Probably fairly specific to my problem, but hopefully it will help someone else.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog