我正在使用 MVC 4 Web API 和匿名识别模块来识别我的应用程序中购物车的匿名用户。这是我添加到 web.config 文件中的值:
<anonymousIdentification enabled="true" />
我可以在普通的
Request.AnonymousID
中访问 Controller
但不能在 ApiController
中访问。我怎样才能访问这个? 最佳答案
添加以下 using 语句
using System.Web;
然后使用:
HttpContext.Current.Request.AnonymousID
关于c# - ApiController 中的 Request.AnonymousID,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20026430/