【问题标题】:Firebase Functions get text response error "Unexpected token H in JSON"Firebase 函数获取文本响应错误“JSON 中的意外令牌 H”
【发布时间】:2019-03-11 18:26:01
【问题描述】:

我正在尝试找出这个错误:

"error: SyntaxError: Unexpected token H in JSON at position 0 at JSON.parse (<anonymous>) at XMLHttpRequest.onLoad (http://localhost:4200/vendor.js:8646:51) at ZoneDelegate.push../node_modules/zone.js/dist/zone.js.ZoneDelegate.invokeTask (http://localhost:4200/polyfills.js:2743:31) at Object.onInvokeTask (http://localhost:4200/vendor.js:38114:33) at ZoneDelegate.push../node_modules/zone.js/dist/zone.js.ZoneDelegate.invokeTask (http://localhost:4200/polyfills.js:2742:36) at Zone.push../node_modules/zone.js/dist/zone.js.Zone.runTask (http://localhost:4200/polyfills.js:2510:47) at ZoneTask.push../node_modules/zone.js/dist/zone.js.ZoneTask.invokeTask [as invoke] (http://localhost:4200/polyfills.js:2818:34) at invokeTask (http://localhost:4200/polyfills.js:3862:14) at XMLHttpRequest.globalZoneAwareCallback (http://localhost:4200/polyfills.js:3888:17)
text: "Hello from Firebase!"

这是我的功能:

exports.helloWorld = functions.https.onRequest((req, res) => {
  cors(req, res, () => {
    res.send("Hello from Firebase!");
  });
});

这是我对函数的调用:

public sendHttpRequestTest(){
    let url = `my_link_to_functions/helloWorld`;
    const req = new HttpRequest("GET",url);

    this.http.request(req).toPromise()
        .then( res => {
          console.log(res);
        })
        .catch( err => {
          console.log(err);
        })
  }

【问题讨论】:

  • 你为什么要为 url 变量使用模板文字?

标签: node.js firebase google-cloud-functions


【解决方案1】:

我通过像这样将它作为 JSON 发送来修复它:

res.send(JSON.stringify("Hello from Firebase!"));

【讨论】:

    猜你喜欢
    • 2014-03-31
    • 1970-01-01
    • 1970-01-01
    • 2021-04-06
    • 2021-07-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多