如何在Ajax中使用帖子

发布于 2025-01-17 15:57:19 字数 737 浏览 0 评论 0原文

我创建了一个页面,加载数据后将出现。我正在使用github url和ajax帖子。但是数据没有显示。我应该从我制作的代码中修复什么?

<div id="content"> 
</div>
window.onload = function(){
    $.ajax({
        type: 'POST',
        url: 'https://raw.githubusercontent.com/bimobaskoro/hewan/main/kucing.json',
        dataType: 'application/json',
        sucess: function (data) {
            html = '<div class="content" id="content"></div>'
            html += '<h1>' + data.judul + '</h1>'
            html += '<p>' + data.isi + '</p>'
            html += '</div>'
            document.getElementById('content').innerHTML += html;
        },
        error: function() {

        }
    });
}

I created a page where after loading the data will appear. I am using github url and ajax POST. But the data is not showing. What should I fix from the code that I have made?

<div id="content"> 
</div>
window.onload = function(){
    $.ajax({
        type: 'POST',
        url: 'https://raw.githubusercontent.com/bimobaskoro/hewan/main/kucing.json',
        dataType: 'application/json',
        sucess: function (data) {
            html = '<div class="content" id="content"></div>'
            html += '<h1>' + data.judul + '</h1>'
            html += '<p>' + data.isi + '</p>'
            html += '</div>'
            document.getElementById('content').innerHTML += html;
        },
        error: function() {

        }
    });
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无人问我粥可暖 2025-01-24 15:57:19

考虑以下内容。

$(function(){
  $.getJSON("https://raw.githubusercontent.com/bimobaskoro/hewan/main/kucing.json", function (data) {
      var html = $("<div>", {
        class: "content"
      });
      $("<h1>").html(data.judul).appendTo(html);
      $("<p>").html(data.isi).appendTo(html);
      $("#content").append(html);
  });
}

由于Github与同一领域不同,因此您可能会遇到CORS问题。如果是这样,您可以考虑 jsonp

Consider the following.

$(function(){
  $.getJSON("https://raw.githubusercontent.com/bimobaskoro/hewan/main/kucing.json", function (data) {
      var html = $("<div>", {
        class: "content"
      });
      $("<h1>").html(data.judul).appendTo(html);
      $("<p>").html(data.isi).appendTo(html);
      $("#content").append(html);
  });
}

As GitHub is not apart of the same domain, you may encounter CORS issues. If so, you might consider JSONP.

心碎无痕… 2025-01-24 15:57:19

您为什么要使用帖子到JSON文件。获取方法就足够了。

$.ajax({
    url: 'https://raw.githubusercontent.com/bimobaskoro/hewan/main/kucing.json',
    success: function (data)
    { 
        var html = '<div class="content" id="content">';
        var obj=JSON.parse(data);
        obj.forEach((e)=>{
            html += '<h1>' + e.judul + '</h1>'
            html += '<p>' + e.isi + '</p>'
        });
        
        html += '</div>'
        document.getElementById('content').innerHTML = html;    
    }
});

Why would you use post to a json file. Get method is enough.

$.ajax({
    url: 'https://raw.githubusercontent.com/bimobaskoro/hewan/main/kucing.json',
    success: function (data)
    { 
        var html = '<div class="content" id="content">';
        var obj=JSON.parse(data);
        obj.forEach((e)=>{
            html += '<h1>' + e.judul + '</h1>'
            html += '<p>' + e.isi + '</p>'
        });
        
        html += '</div>'
        document.getElementById('content').innerHTML = html;    
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文