Cleanup REST API 2 (#1273)

This commit is contained in:
CaCO3
2022-11-04 22:38:18 +01:00
committed by GitHub
parent 7e26744e2e
commit 1fc0b41fca
3 changed files with 36 additions and 6 deletions

View File

@@ -84,7 +84,7 @@ function setprevalue() {
inputVal = inputVal.replace(",", ".");
var xhttp = new XMLHttpRequest();
try {
url = basepath + "/setPreValue.html?value=" + inputVal + "&numbers=" + _number;
url = basepath + "/setPreValue?value=" + inputVal + "&numbers=" + _number;
xhttp.open("GET", url, false);
xhttp.send();
response = xhttp.responseText;
@@ -102,7 +102,7 @@ function loadPrevalue(_basepath) {
var xhttp = new XMLHttpRequest();
try {
url = _basepath + '/setPreValue.html?numbers=' + _number;
url = _basepath + '/setPreValue?numbers=' + _number;
xhttp.open("GET", url, false);
xhttp.send();
response = xhttp.responseText;

View File

@@ -111,7 +111,7 @@ function refresh() {
var basepath = "http://192.168.178.22";
function loadStatus() {
url = basepath + '/statusflow.html';
url = basepath + '/statusflow';
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
@@ -125,7 +125,7 @@ function refresh() {
}
function loadCPUTemp() {
url = basepath + '/cputemp.html';
url = basepath + '/cpu_temperature';
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
@@ -138,7 +138,7 @@ function refresh() {
}
function loadRSSI() {
url = basepath + '/rssi.html';
url = basepath + '/rssi';
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {