我是新来的轨道。我有两个模型用户和语言,我有语言模型中的语言列表。
class User < ActiveRecord::Base
has_and_belongs_to_many :languages
和
class Language < ActiveRecord::Base
has_and_belongs_to_many :users
我有两个问题:
- 如何将现有语言添加到用户的语言列表中?
- 如何将语言包含到用户的 json 表示中?
我没有任何形式,我使用 curl 发布和接收 json 作为响应,如下所示:
curl -H 'Content-Type: application/json' -H 'Accept: application/json' -X GET htt://localhost:3000/profile.json -d "{ "auth_token" : "teafa52qsasTDGaahawa" }"
请帮我。提前致谢。