以下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();
});