0
我已經在控制器中執行以下代碼傳PARAMS的方法哈希在軌
def show
client = GameAccounts::GameAccountsClient.new
..
json = client.get_accounts(..)
..
end
我在GameAccountsClient下面的代碼
def get_accounts(..)
response = query_account(CGI.escape(params[:name])
JSON.parse(response.body)
end
我上面的代碼,我不知道如何在調用控制器中的get_accounts方法時傳遞params [:name]。任何人都可以幫我把散列的方法傳給rails嗎? 。謝謝