我有一些代碼,我在網上找到了工作:Rails的 - 試圖瞭解一段代碼
def person_path(options)
# This is where the path of the query is constructed.
path = "/people/" # For this section of the LinkedIn API
if id = options.delete(:id)
path += "id=#{id}"
elsif url = options.delete(:url)
path += "url=#{CGI.escape(url)}"
else
path += "~"
end
end
我不是完全肯定它做什麼。我試圖做的是有它創建一個字符串是這樣的:http://api.linkedin.com/v1/people/~:(current-status),這是我從LinkedIn開發者文檔這裏有:https://developer.linkedin.com/documents/profile-api
什麼我應該通過這個功能,如何準確的任何想法它實現它做什麼?
謝謝!
啊,是不是動態語言好玩(當你沒有很好的文檔)? –
Lol目前還沒有很多樂趣,但我想它會提高......我是一個Ruby的新手。 – Awesomeness