嗨我有一個應用程序,存儲職位,其中包括名稱,位置等信息,也上傳的圖像。流星 - 我如何輕鬆地存儲/檢索用戶帖子的圖像
現在我抓住圖像對象並將其插入到數據庫中,但我不確定這是否正確,因爲我無法正確檢索並顯示它。
這裏,如果我做一個找到該職位 「placepic」 顯示的內容:
placepic:ObjectlastModifiedDate:週二2014年10月7日16點四十〇分45秒格林尼治標準時間0400(EDT)名稱: 「placelist.jpg」大小:12170type:「image/jpeg」webkitRelativePath:「」
這是我到目前爲止(它在一個提交事件),但我知道這是不對的,我一直無法破解它 - 我甚至看過這個https://github.com/CollectionFS/Meteor-CollectionFS,但它仍然沒有任何意義) -
var imgfile = template.find('#placepic')。files [0];
var post = {
name: $(e.target).find('[name=name]').val(),
bestfeature: $(e.target).find('[name=bestfeature]').val(),
address: $(e.target).find('[name=address]').val(),
location: $(e.target).find('[name=location]').val(),
neighborhood: $(e.target).find('[name=neighborhood] option:selected').text(),
//description: $(e.target).find('[name=description]').val(),
map: $(e.target).find('[name=map]').val(),
// placepic: $(e.target).find('[name=placepic]').val()
placepic: imgfile
}
酷。是的,我終於得到(一半)https://github.com/CollectionFS/Meteor-CollectionFS工作。它存儲圖像(儘管到.meteor/local/cfs/files/images中的路徑不太好),試圖找出如何獲取服務器上文件的url路徑並將其保存到一個變量。我會嘗試以上。謝謝 – cmee 2014-10-11 00:36:35
AHA!我想到了。你的代碼激勵我去破解路徑,以及如何爲保存路徑和流星路徑設置目錄文件保存位置的路徑。謝謝 - 你救了我幾個小時把我的頭撞在牆上。 – cmee 2014-10-11 18:19:42
此問題已解決。 – cmee 2014-10-11 18:20:18