更新api url
This commit is contained in:
+3
-3
@@ -12,7 +12,7 @@ window.onload = function () {
|
||||
paramValue = getParameterByName('id');
|
||||
console.log(paramValue);
|
||||
|
||||
axios.get("https://pcredive.ray650128.com/backend/api/member/" + paramValue)
|
||||
axios.get("https://table-api.sakunadaisuki.club/api/member/" + paramValue)
|
||||
.then(function (response) {
|
||||
// 在這裡處理回傳的資料
|
||||
var options = response.data;
|
||||
@@ -69,7 +69,7 @@ function updateMember(memberId, nickName, playerName, gameUid, discordId) {
|
||||
}
|
||||
}
|
||||
// 发送登录请求
|
||||
axios.put("https://pcredive.ray650128.com/backend/api/member/" + memberId, {
|
||||
axios.put("https://table-api.sakunadaisuki.club/api/member/" + memberId, {
|
||||
playerName: playerName,
|
||||
nickName: nickName,
|
||||
discordID: discordId,
|
||||
@@ -87,7 +87,7 @@ function updateMember(memberId, nickName, playerName, gameUid, discordId) {
|
||||
}
|
||||
|
||||
function deleteMember(memberId) {
|
||||
axios.delete("https://pcredive.ray650128.com/backend/api/member/" + memberId)
|
||||
axios.delete("https://table-api.sakunadaisuki.club/api/member/" + memberId)
|
||||
.then(function (response) {
|
||||
window.location.href = "./index.html";
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user