mirror of
https://github.com/caojiezi2003/live2d-widget.git
synced 2024-11-10 04:49:47 +00:00
Use fetch api
This commit is contained in:
parent
3f4311c0ac
commit
e452d0717d
@ -183,37 +183,32 @@ $(function() {
|
||||
function loadRandModel() {
|
||||
var modelId = localStorage.getItem("modelId"),
|
||||
modelTexturesId = localStorage.getItem("modelTexturesId");
|
||||
$.ajax({
|
||||
cache: false,
|
||||
url: `${apiURL}/rand_textures/?id=${modelId}-${modelTexturesId}`,
|
||||
dataType: "json",
|
||||
success: function(result) {
|
||||
fetch(`${apiPath}/rand_textures/?id=${modelId}-${modelTexturesId}`)
|
||||
.then(response => response.json())
|
||||
.then(result => {
|
||||
loadModel(modelId, result.textures["id"]);
|
||||
setTimeout(function() {
|
||||
state = 2;
|
||||
$("#cover").css("bottom", "80%");
|
||||
$("#refresh").attr("href", "javascript:refresh()");
|
||||
}, 1000);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function loadOtherModel() {
|
||||
var modelId = localStorage.getItem("modelId");
|
||||
$.ajax({
|
||||
cache: false,
|
||||
url: `${apiURL}/switch/?id=${modelId}`,
|
||||
dataType: "json",
|
||||
success: function(result) {
|
||||
fetch(`${apiPath}/switch/?id=${modelId}`)
|
||||
.then(response => response.json())
|
||||
.then(result => {
|
||||
loadModel(result.model["id"]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
window.info = function() {
|
||||
// Your code here...
|
||||
$.getJSON("https://v1.hitokoto.cn/", function(data) {
|
||||
alert("「" + data.hitokoto + "」——" + data.from);
|
||||
fetch("https://v1.hitokoto.cn")
|
||||
.then(response => response.json())
|
||||
.then(result => {
|
||||
alert("「" + result.hitokoto + "」——" + result.from);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user