1

我正在尝试从存储在 db.Model 作为 blobstore.BlobReferenceProperty() 的 blobKey 中提供 blob,但我不确定如何正确执行此操作,因为我当前的方法给出了 404。我正在存储通过使用常规的“重写”请求获取 blobKey 值self.request.get('file_field')

密钥的内容在 SDK 控制台中如下所示:

Content-Type: video/mp4
MIME-Version: 1.0
Content-Length: 475712
Content-MD5: OTY0MjY4OGI4NDgwYzVlZTI2MGJiNzg0YTA4OTIzNzY=
content-type: video/mp4
content-disposition: form-data; name="video_file"; filename="test_time.mp4"
X-AppEngine-Upload-Creation: 2012-11-10 21:41:12.973934

我的视频下载处理程序非常标准,看起来像这样

class VideoServeHandler(blobstore_handlers.BlobstoreDownloadHandler):
  def get(self, resource):
    resource = str(urllib.unquote(resource))
    blob_info = blobstore.BlobInfo.get(resource)
    self.send_blob(blob_info)

这是我呈现网址的方式:

'/videos/%s' % time_data_instance.video_key.key()

和网址映射:

('/videos/([^/]+)?', VideoServeHandler)

这是我从控制台得到的 404 错误:

INFO     2012-11-10 21:54:11,371 dev_appserver.py:3092] "GET /videos/Content-Type:%20video/mp4MIME-Version:%201.0Content-Length:%20475712Content-MD5:%20OTY0MjY4OGI4NDgwYzVlZTI2MGJiNzg0YTA4OTIzNzY=content-type:%20video/mp4content-disposition:%20form-data;%20name= HTTP/1.1" 404 -

有谁知道问题可能是什么,查看 404 中的 url,它看起来好像不正确,但我找不到任何其他生成它的方法

更新:

这是整个代码

http://www.pastebucket.com/5163

4

2 回答 2

0

问题在于您的请求字符串:

INFO     2012-11-10 21:54:11,371 dev_appserver.py:3092] "GET /videos/Content-Type:%20video/mp4MIME-Version:%201.0Content-Length:%20475712Content-MD5:%20OTY0MjY4OGI4NDgwYzVlZTI2MGJiNzg0YTA4OTIzNzY=content-type:%20video/mp4content-disposition:%20form-data;%20name= HTTP/1.1" 404 -

据我所知,您的请求/videos/Content-Type:%20video/mp4[..some garbage...],难怪您会得到 404 回复。

再次检查您如何提出请求 URL。绝对不是这样的:

'/videos/%s' % time_data_instance.video_key.key()
于 2012-11-13T00:02:16.717 回答
0

send_blob 需要BlobKey,而不是 BlobInfo。

只需将资源传递给 send_blob

class VideoServeHandler(blobstore_handlers.BlobstoreDownloadHandler):
  def get(self, resource):
    resource = str(urllib.unquote(resource))
    self.send_blob(resource)
于 2012-11-10T22:02:52.087 回答