0
我正在使用在響應(JSON哈希)中包含URL的API。我試圖接受響應,解析URL並在我的rails視圖中使用link_to助手中的URL。我目前的JSON解析沒有成功。將JSON哈希轉換爲要在rails視圖中使用的URL
# The Response
{"url":"https://demo.foobar.net/t=54e85a9f-008b-481c-986d-69881208713e"}
# Controller Action to Parse
@url = JSON.parse(response.to_json)
# Rails View
<%= link_to "Sign Document", @url %>
# Rendered HTML
<a href="/?url=https%3A%2F%2Fhttps://demo.foobar.net/t=54e85a9f-008b-481c-986d-69881208713e">Click Here!</a>
我需要解析JSON哈希,以確保我的link_to軌道助手的輸出是:
<a href="https://demo.foobar.net/t=54e85a9f-008b-481c-986d69881208713e">Click Here!</a>