Newer
Older
Sinatra_practice / request_print.haml
@Yusuke Yusuke on 28 Jul 2020 405 bytes add sinatra_practice
!!!

%html{:lang => "ja"}
	%head
		%title Request Print
	%body
		%p リクエストのHTTPメソッドと実行パス
		%p
			= "method = #{@request_method}"
			= "url = #{@request_url}"
			= "path = #{@request_path}"
		%p 入力フォームのテキストボックスから入力されたデータ
		%p
			= "TextBox(name) = #{@name}"
			= "TextBox(title) = #{@title}"
= "TextBox(message) = #{@message}"