-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
55 lines (48 loc) · 1.52 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
let taskApp = new Vue({
el: '#taskApp',
data: {
tasks: [
]
},
mounted(){
this.$http.get("http://142.93.202.10:8080/tasks").then(result =>{
this.tasks = result.data;
},error =>{
console.error(error);
})
},
methods: {
deleteTask: function(task){
this.$http.delete("http://142.93.202.10:8080/tasks", {bosy:{id: task.id}}).then(result => {
console.log(JSON.stringify(result.data));
this.tasks.splice(this.tasks.indexOf(task),1);
},error => {
console.error(error);
})
},
addTask: function(e){
e.preventDefault();
if(this.tasks.name){
let task = {
name: this.tasks.name,
done: false
}
this.$http.post("http://142.93.202.10:8080/tasks",task).then(result => {
this.tasks.push(result.data);
console.log(this.task);
},error => {
console.error(error);
})
this.tasks.name ="";
}
},
updateTask: function(task){
this.$http.put("http://142.93.202.10:8080/tasks", task).then(result => {
console.log(JSON.stringify(result.data));
this.tasks = result.data;
}, error => {
console.error(error);
})
}
}
});