Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人在 CF10 中使用 REST 进行生产吗?
这比 ajax 调用远程方法更好,例如foo.cfc?method=blah?
foo.cfc?method=blah
你能让你的 RESTful API 成为纯无状态的吗?你还依赖会话cookie吗?
REST 和对方法的远程调用是两个完全不同的选项,它们都不一定“更好”。CF 中的 REST 服务默认是无状态的。如果您想参与会话或任何其他状态,这完全取决于您。我建议阅读更多关于 REST 的内容,看看它是否是您想要构建的那种 API。祝你好运!