gpt4 book ai didi

php - 我使用 curl post 在 body 标签中丢失了一个 css 背景图像

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

我使用 curl post 在 body 标签中丢失了一个 css 背景图像。是这样设置的。

body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-image: url(../Images/pattern4.png); // this one disappeared
background-repeat: repeat-x;
background-attachment: fixed;
margin: 0;
padding: 0;
color: #000;
}

Curl 帖子是。

$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $endpoint);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpStr);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

curl_exec($ch);
curl_close($ch);

我希望它能自动解决,所以我继续使用 curl 在另一个请求中编码,我也失去了在所有页面上滚动页面的能力。页面右侧的整个滚动条都没有了。我的代码是一级架构,所有 Html 都使用 php 显示。

知道问题出在哪里吗?

网站是 www.bestspot2shop.com

我使用 curl 对一个 API 进行了两次调用,以从站点获取信息并将其显示在我的站点上。第一个电话让我失去了背景图片和侧面的滚动条。将鼠标悬停在左侧菜单中的 APITestPacks 上,然后单击 Medical、Tests 链接。你知道问题可能是什么吗?我有一个 ssl 证书,但有时会干扰某些事情。

最佳答案

背景图像的 URL 需要完全限定 (http://),因为它需要指向原始服务器。

关于php - 我使用 curl post 在 body 标签中丢失了一个 css 背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21439872/

25 4 0