Provide options for fetch to get state.
This commit is contained in:
parent
134afb8e05
commit
ae9fd34445
|
@ -441,7 +441,10 @@
|
||||||
console.log(`setDir to ${res.dir}`);
|
console.log(`setDir to ${res.dir}`);
|
||||||
};
|
};
|
||||||
web.getState = function () {
|
web.getState = function () {
|
||||||
fetch('/status')
|
const opts = {
|
||||||
|
method : 'GET'
|
||||||
|
}
|
||||||
|
fetch('/status', opts)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
let r = res.json();
|
let r = res.json();
|
||||||
console.dir(r);
|
console.dir(r);
|
||||||
|
@ -454,6 +457,8 @@
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
web.getStateSuccess = function (res) {
|
web.getStateSuccess = function (res) {
|
||||||
|
console.dir(res)
|
||||||
|
return;
|
||||||
var exposure;
|
var exposure;
|
||||||
var scale;
|
var scale;
|
||||||
if (res.frame.dir !== true) {
|
if (res.frame.dir !== true) {
|
||||||
|
|
Loading…
Reference in New Issue