0
在服務器上使用HTTP.call()
,即使響應頭包含一致的content-length
,我也會得到不同的響應長度(對於相同的端點)。換句話說,響應被隨機截斷。流星HTTP.call返回不完整/被截斷的響應
import { HTTP } from 'meteor/http';
Meteor.methods({
'getJSON': function(url) {
return HTTP.call('GET', url);
}
});