Skip to content

Instantly share code, notes, and snippets.

@sailfish009
Created May 14, 2020 23:13
Show Gist options
  • Select an option

  • Save sailfish009/a7f33378e0860a358fd69486f1dcb9bd to your computer and use it in GitHub Desktop.

Select an option

Save sailfish009/a7f33378e0860a358fd69486f1dcb9bd to your computer and use it in GitHub Desktop.
// vue.js get data from response
.then(response => {
response.data
}
# python response with json data
def some_func():
response.content_type = 'application/json'
rv = [{"id":1, "user": "testuser", "permissions": "test", "token": "abcdefg"}]
return dict(data=rv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment