如何在带有自定义ID的“ jsonplaceholder.typicode.com”中发布假条目

时间:2019-06-14 00:15:28

标签: angular http http-post

先生,我只想问一下如何发布具有自定义ID(例如id = 123)的假条目“ jsonplaceholder.typicode.com/posts”api。因为当我发布时,它会自动将“ 101”发布为ID。顺便说一下,这是使用Angular。谢谢

我有此代码,但不确定这是否正确:

  onSubmit() {
    const list = {
      id: this.id,
      title: this.title,
      body: this.body
    }
    this.sample.samplefunc(list).subscribe(list => {
      list.id = 123
      this.lists.push(list)
    })
  }

0 个答案:

没有答案