0
var text={"hello.txt":"Hello World!","bye.txt":"Goodbye Cruel World!"};
app.get('/files/:name',function(req,res){
res.set("Content-Type","text/plain");
res.send(text[req.params.name]);
});
,這是我的客戶端AJAX調用
$.ajax({
type: verb || 'GET',
dataType: "text",
url: url,
data: data,
contentType : 'text/plain',
success: function() { $('div#callForm button').removeAttr('disabled'); },
error: alert
});
但是沒有文件返回下載。
有人能指出我正確的方向嗎?
我看到生病添加這塊到我的代碼,看看是否得到一個文件後下載。現在標記正確謝謝 –