JSON使用后方法获取数据

问题描述 投票:0回答:1

我想从另一台服务器xyz.com获取一个json文件(不为了安全而在这里写上原始站点名称),但它的问题是website xyz.com仅支持http post request。为了检查我的html代码是否工作正常,我使用http get method并将json数据上传到支持http get request的另一个站点上。而且我发现它工作正常。但是当我尝试使用post method时,它无法工作。您能帮我吗?>

I am using currently and working fine
<script>

   $(function() {


  var people = [];

  $.get('https://api.myjson.com/bins/c307c',function(data) {
      $.each(data.video, function(i, f) {


xyz.com的HTML代码,它还返回.json文件

<html>

<head>


<form action="https://www.xyz.php" method="POST" >
<div class="container" style="width:100%;">
<center></center>
</div>
  <div class="container" style="width:100%;">
    <label for="userId"><b>UserId</b></label>
    <input type="number" placeholder="Enter Your User Id" name="userId" autofocus required>

    <label for="Passkey"><b>Passkey</b></label>
    <input type="number" placeholder="Enter Passkey" name="Passkey" required>

    <button type="submit" >GET Json File From Server</button>
  </div>
</form>

这是我尝试过的,但没有用

<script>

   $(function() {


  var people = [];

  $.post('https://xyz.php', usedId=5&passkey=55, function(data) {
      $.each(data.video, function(i, f) {


我想从另一台服务器xyz.com(不为了安全起见在此输入原始网站名称)获取我的html页面的json文件,但问题是网站xyz.com仅支持http发布请求。对于咀嚼...

javascript jquery ajax http-post
1个回答
0
投票

尝试这种方式的代码

© www.soinside.com 2019 - 2024. All rights reserved.