📜  vuejs post - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:45.045000             🧑  作者: Mango

代码示例1
created() {
  // Simple POST request with a JSON body using fetch
  const requestOptions = {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({ title: "Vue POST Request Example" })
  };
  fetch("https://jsonplaceholder.typicode.com/posts", requestOptions)
    .then(response => response.json())
    .then(data => (this.postId = data.id));
}