0

これは私の最初のSinatraプロジェクトでした-リンク短縮サービスですが、いくつかのエラーで立ち往生しています。正直なところ、sinatraの組み込みデバッガーは文字通り何も教えてくれません。手がかりを教えていただくか、問題の解決策を提案していただきたいと思います。

http://min.us/mkBIVTh7p-スクリーンショット、これは、URLを使用してフォームを送信すると発生します:http://google.comおよびword google

require 'sinatra'
    require 'shotgun'
    require 'data_mapper'
    require 'dm-migrations'
    require 'dm-sqlite-adapter'

DataMapper::setup(:default, "sqlite3://#{Dir.pwd}/form.db")

class Url
    include DataMapper::Resource
    property :id, Serial
    property :url, String
    property :suggestion, String
end

get '/' do 
    erb :index 
end

post '/' do
    Url.create(:url => params[:url], :suggestion=> params[:suggestion])
end

get '/Url.suggestion' do
    query = request_path.slice!(0) 
    redirection = Url.first(:suggestion => query)
    redirect redirection.url
end

index.rb

<!doctype html>
<html>
<head>
    <title>Skracanie linków</title>
</head>
<body>

<form name="form" method="post" action="#">
    <fieldset>
        <legend>Wpisz co trzeba</legend>
        <p><label> <input type="text" name="post[url]"/>Url:</label></p>
        <p><label> <input type="text" name="post[suggestion]"/>Suggested name:</label></p>
    </fieldset>
    <p class="center">
        <input type="reset" value="Wyczyść formularz"/>
        <input type="submit" value="Wyślij"/>
    </p>  

</form>
</body>
</html>
4

1 に答える 1

2

これは、モデルを完成させる必要があるためです。「モデルのファイナライズ」という見出しの下にあるhttp://datamapper.org/getting-started.htmlを参照してください。

モデルを定義した後、finalizeコマンドを追加します。

class Url
    include DataMapper::Resource
    property :id, Serial
    property :url, String
    property :suggestion, String
end

# add this line
DataMapper.finalize
于 2012-04-08T12:59:05.763 に答える