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 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀