1

コーヒースクリプトでエクスプレスを使用する。私がやりたいことは、リクエストが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 としてレンダリングするにはどうすればよいですか?

助けてくれてありがとう!

4

1 に答える 1

1

わかった!

  myurl.pipe res

立ち寄ってくれてありがとう!

于 2012-10-07T22:23:15.363 に答える