SAP Spartacus 用户请求中的 current id 是从哪里来的
从 SAP Spartacus 成功登录之后,能在 Local Storage 里观察到 userId 为 current:
这个 current id 从哪里来的呢?在 Spartacus 应用初始化的时候,从浏览器的 local storage 里取的。参考下图 syncWithStorage 方法:
取到之后,设置到内存中:this.userIdService.setUserID:
手动清除浏览器 Local Storage 之后,F5 刷新页面:
此时 userId 被重新设置成 anonymous:
anomymous 在 Spartacus 的设置里是一个常量:OCC_USER_ID_ANONYMOUS:
点了 sign in 之后:
使用用户输入的用户名,密码,以及 Spartacus 应用的 client_id 和 client_secret, 去换取 Access Token:
换取 token 的 url 为:
https://20.83.184.244:9002/authorizationserver/oauth/token
换取 token 之后,当前用户名被硬编码成 current,即常量 OCC_USER_ID_CURRENT:
SPRO 里这个continue flag的含义:
After I have configured another account 4097781 for Ship to party, the text for this second account is not copied to the sales order.
enable continue flag for sold-to party 后重新测试:
测试结果发现0002 (copy from sold to party ) copy的text 会被0003 ( copy from ship to party ) copy的text所overwrite:
总结
本文首先引入了 Spartacus current_id 的概念,接着详细阐述了该 current_id 从后台的读取逻辑。
- 点赞
- 收藏
- 关注作者
评论(0)