通过反应在快递帖子中进行重定向

时间:2017-04-04 12:58:57

标签: node.js reactjs express

我正在使用react及其路由器来重定向我的应用程序。当我在我的服务器快递中使用get指令时,它工作正常。但是当我发布帖子指令时,它不会重定向。我该怎么办?这是我的代码:

(我按照预期的方式收到回复,但之后没有任何反应)

public void enforceNfceeAdminPerm(String pkg) {
    if (pkg == null) {
        throw new SecurityException("caller must pass a package name");
    }
    NfcPermissions.enforceUserPermissions(mContext);
    if (!mNfceeAccessControl.check(Binder.getCallingUid(), pkg)) {
        throw new SecurityException(NfceeAccessControl.NFCEE_ACCESS_PATH +
                " denies NFCEE access to " + pkg);
    }
    if (UserHandle.getCallingUserId() != UserHandle.USER_OWNER) {
        throw new SecurityException("only the owner is allowed to call SE APIs");
    }
}

1 个答案:

答案 0 :(得分:3)

你可以这样写你的api:

    lisaApp.post('/signup', (req, res) => {
      const validationResult = validateSignupForm(req.body);
      if (!validationResult.success) {
        return res.status(400).json({
          success: false,
          message: validationResult.message,
          errors: validationResult.errors
        });
      }

      var newClient = req.body
      newClient.clientemailname = newClient.userclient
      newClient.client_id = uuid.v4()

      delete newClient.confirmPassword

      ClientApi.saveClient(newClient, function (err, usr) {
        if (err) return res.status(500).send(err.message)

        console.log('ready to redirect') //Here, the response has a status "0k"
        return res.status(200).json({
            success:true,
            redirectUrl: '/'
        })
      });
    });

在您的React文件中,您可以在POST处理程序中使用此代码来使用react-router重定向。

this.history.pushState(null, res.redirectUrl);