在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前面已经介绍了有关Ruby语言上的东西,下面开始学习让Ruby流行起来的Rails平台。 创建一个Rails项目的命令是:rails projectname,可以指定数据库类型进行创建,如 rails -d mysql projectname 这时候我们先创建一个控制器,然后在控制器内创建一个action
class SayController < ApplicationController
def hello @time = Time.now end end 这个时候在浏览器中输入http://localhost:3000/say/hello看到template is missing
<html>
这样 hello的第一个例子就出来了。
<head> <title>hello!</title> </head> <body> <h1>Hello from Rails!</h1> <p> it is now <%= @time %> </p> </body> </html> |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论