// Send AJAX request to route
function fetch_post(key, ...values){
const formData = new FormData();
for (let value of values){
formData.append(key, value)
}
fetch('/settings', {
method: 'post',
body: formData
});
}
在此属性值中:
onchange="fetch_post(this.name, this.value); location.reload();"
当fetch_post
运行完成时,我希望运行location.reload()
。
2条答案
按热度按时间idfiyjo81#
只需在fetch函数中添加location. reload(),如下所示:
希望这能有所帮助!
a7qyws3x2#
您希望location.reload()在fetch_post运行结束时运行。
then
是承诺链。如果成功调用提取,则执行代码。