我有一个 java 支持的 web 服务,我想用 ActiveResource 进行测试。
假设的基本 url 端点是什么,比如说我有一个用户资源。
目前我的网址是:
localhost:8080/api/users
我创建了一个测试类,但它失败了,因为它假设我有这个 url:
localhost:8080/api/users.json
我打算这样做:
localhost:8080/api/users/ (GET - lists users)
localhost:8080/api/users/create (POST - create a user)
localhost:8080/api/users/10 (GET user with id 10)
localhost:8080/api/users/10/update (POST - update user with id 10)
什么是 Rails 标准?这个标准是跨其他框架的“标准”吗?