gpt4 book ai didi

javascript - 在 javascript src 属性中定义 php 文件是什么意思?

转载 作者:行者123 更新时间:2023-11-28 00:01:31 25 4
gpt4 key购买 nike

我在网页上的某个地方发现了这个脚本,该脚本在脚本标记中链接了外部 php 文件。我用谷歌搜索但没有发现有用的东西。谁能让我明白这一点?

<script type="text/javascript" src="file.php"></script>

以下是file.php的内容

Bootstrapper._serverTime = '2015-08-01 11:50:50'; 
Bootstrapper._clientIP = '103.39.117.145';
Bootstrapper.callOnPageSpecificCompletion();
Bootstrapper.setPageSpecificDataDefinitionIds([])

最佳答案

是的,这不是一种未知的做法,许多 CMS 以及项目都使用专用于处理前端资源的“端点”或“脚本”。

它们可以执行诸如将资源缩小为一个 block 或将资源文件简单地串联为一个 block 等任务。

只要任何内容​​(脚本或端点)输出 javascript,或者在本例中为 echo 的 javascript,就可以在脚本标记中引用它。

Note - This requires the script or endpoint to handle output headers as well, which is commonly done by sending in a Content-Type header along the response

In PHP it's usually done using header('Content-Type: application/javascript');

关于javascript - 在 javascript src 属性中定义 php 文件是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31761576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com