XMLHttpRequest从php获取数据如何加载到html div和level上

发布于 2025-01-09 04:29:07 字数 849 浏览 0 评论 0原文

请有人帮我解决这个问题。

我正在使用 XMLHttpRequest 从 php 获取数据作为 json 数组,这是数据。

我从 php 获取的数据

使用此代码

const API_PATH = 'http://localhost/api/';
window.onload = function(){
var request = new XMLHttpRequest();
request.onreadystatechange = function() {
document.getElementById("all_service").innerHTML = this.responseText;

};

request.open('GET', API_PATH + 'getServices.php');
request.send(null);
}

如何在 div 和级别上加载

<div id="all_service">
    <label class="service-name">Service Name</label>
    <label class="service-description">description</label>
    <label class="service-offers">deals</label>
    <img   class="service_image" src="img/service1.png">
</div>

please someone help me to solve this problem.

i am getting data with XMLHttpRequest from php as json array, here is the data.

Data I am getting from php

with this Codes

const API_PATH = 'http://localhost/api/';
window.onload = function(){
var request = new XMLHttpRequest();
request.onreadystatechange = function() {
document.getElementById("all_service").innerHTML = this.responseText;

};

request.open('GET', API_PATH + 'getServices.php');
request.send(null);
}

how to load on div and level

<div id="all_service">
    <label class="service-name">Service Name</label>
    <label class="service-description">description</label>
    <label class="service-offers">deals</label>
    <img   class="service_image" src="img/service1.png">
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文