如何将此js函数的返回值推送到单独的JSON文件?

时间:2016-07-25 15:55:10

标签: javascript json fetch-api

以下js以JSON格式输出数据(I"相信"语法是正确的JSON格式)。我的问题 - 我怎样才能将这些数据自动发送到我服务器上的单独文件,例如listing.json,每次用户打开页面并执行脚本?

fetch('http://www.jamapi.xyz', {
  method: 'POST',
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    url: 'https://theskint.com/',
    json_data: '{"listing": [{"elem": ".entry-content > p:nth-child(n+2)" , "value": "text"}] }'
  })
}).then(function(response) {
  return response.json();
});  

0 个答案:

没有答案