コーヒースクリプトでエクスプレスを使用する。私がやりたいことは、リクエストがcouchdbからtest.htmを取得し、そのhtmファイルをブラウザでレンダリングすることです(正しい用語ですか?)。
app.coffee にこれがあります
app.get "/testreq", (req, res) ->
gets = require("request")
myurl = gets 'http://jims.iriscouch.com:5984/album/attachment_id/test.htm'
res.send myurl
ブラウザで「/testreq」に移動すると、代わりにこれらが表示されます...
{
"readable": true,
"writable": true,
"__isRequestRequest": true,
"_redirectsFollowed": 0,
"maxRedirects": 10,
"followRedirect": true,
"followAllRedirects": false,
"setHost": true,
"port": "5984",
"host": "jims.iriscouch.com",
"path": "/album/1d22186ee496b5ada564a9888d003203/test.htm",
"uri": {
"protocol": "http:",
"slashes": true,
"host": "jims.iriscouch.com:5984",
"port": "5984",
"hostname": "jims.iriscouch.com",
"href": "http://jims.iriscouch.com:5984/album/1d22186ee496b5ada564a9888d003203/test.htm",
"pathname": "/album/1d22186ee496b5ada564a9888d003203/test.htm",
"path": "/album/1d22186ee496b5ada564a9888d003203/test.htm"
},
....
res.send myurl を変更するres.render myurl
と、エラーが発生します (500 エラー: ビュー "[オブジェクト オブジェクト]" の検索に失敗しました)。
test.htm (couchdb から) をブラウザーで html としてレンダリングするにはどうすればよいですか?
助けてくれてありがとう!