将参数附加到api请求?

时间:2019-01-08 04:52:12

标签: javascript reactjs rest

我有一个方法,该方法被调用,传递一个文件名,然后对后端进行API调用以获取预授权的链接。我试图将参数(文件名)附加到URL的末尾,但这导致我的API请求到达404。

如何正确地通过API请求传递参数并在响应中获取预授权的URL?

我的文件名中也可能包含空格,我怀疑这可能与返回404的请求有关。

这是我前端上的通话:

getPreauthorizedLink(fileName) {   
    console.log(fileName);
    var fileName = fileName;
    var url = 'reportPresignedURL/' + fileName;
    fetch(config.api.urlFor(url))
    .then((response) => response.json())
    .then((url) => {
        console.log(url);
    });
}

这是该API在后端上的实现:

reports.get('/reportPresignedURL/:fileName', async (req, res) => {
    const subscriberID = req.query.subscriberID || 0;

    var AWS = require('aws-sdk');

    var s3 = new AWS.S3();

    var params = { 
        Bucket: config.reportBucket,
        Key: req.params.fileName,
        Expires: 60 * 5
    }

    try {
        s3.getSignedUrl('getObject', params, function (err, url) {
            if(err)throw err;
            console.log(url)
            res.json(url);
        });
    } catch (err) {
        res.status(500).send(err.toString());
    }
});

我已尝试通过在前端上执行以下操作,将问题隔离到如何传递参数:

  getPreauthorizedLink(fileName){

    console.log(fileName);

    var fileName = fileName;

    var testFileName = 'test';

    var url = 'reportPresignedURL/' + testFileName.replace(/ /g, '%20').replace(/\//g, '%2F');

    fetch(config.api.urlFor(url))
    .then((response) => response.json())
    .then((url) => {

      console.log(url);
  });
  }

这是我在config.js中指定API路由的方式:

reportPresignedURL: '/reports/reportPresignedURL',

我也尝试过这样指定它:

reportPresignedURL: '/reports/reportPresignedURL/:fileName',

供您参考,我已将此API路由添加到前端的 config.js 中。

2 个答案:

答案 0 :(得分:1)

您可以使用es6语法
   让url = reportPresignedURL/${fileName};  查询参数

let url = reportPresignedURL/?fileName=${fileName};

答案 1 :(得分:1)

通过以下方法解决了该问题:

  getPreauthorizedLink(fileName){

    console.log(fileName);

    var fileName = fileName;

    let url = config.api.urlFor('reportPresignedURL', fileName);

    fetch(config.api.urlFor(url))
    .then((response) => response.json())
    .then((url) => {

      console.log(url);
  });
  }