Rails没有在emberjs APP的API调用上设置cookie

时间:2016-05-14 09:37:58

标签: ruby-on-rails api cookies ember.js grape

我从位于http://api.board.app.dev:82/api/private/v1/users/current的我的emberjs应用程序向位于http://www.app.dev:4200/的API发送了一个帖子请求。

返回的数据保存在localestorage中,但我也想在cookie上保存令牌。

实际上,我这样做:

  cookies[:user] = 1
  return { status: 'ok', token: user.authentication_token, email: user.email }

我在回复中看到了cookie:

enter image description here

但是当我转到http://api.board.app.dev:82/api/private/v1/users/current时,我从未在Chrome控制台中看到过cookie。

有什么想法吗?

0 个答案:

没有答案