Vue.JS 2 Tutorial #32 - HTTP Requests

· 6년 전 · 757

HTTP Requests

 

vue-resource https://github.com/pagekit/vue-resource

 

import VueResource from 'vue-resource'

Vue.use(VueResource)

 

this.$http.post('http://jsonplaceholder.typicode.com/posts', {

    title: this.blog.title,

    body: this.blog.content,

    userId: 1

  }).then(function(data) {

    console.log(data)

  });

 

status : 201 > HTTP/1.1 201 Created   참조: https://sir.kr/so_phpframework/388

 

JSONPlaceholder 참조 https://sir.kr/so_phpframework/423

 

|

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기
🐛 버그신고