casule如何构造api url?

问题描述 投票:0回答:1

我修改了完美的卡通样本,我想我在理解胶囊如何构建api URL时遇到了麻烦。我在github上上传了我的尝试:https://github.com/igotapochahontas/skynet

api url search sample bixby
1个回答
0
投票

您需要在URL参数选项中使用查询对象。示例代码:

  var options = { 
    query: {
      day: day
      cam: cam
    }
  };

如果已设置或正在使用修改您的代码:

  if (typeof(day)!= "undefined"){
    options.query.day= day
  }

Bixby Github是执行此类操作的示例代码的绝佳来源,特别是https://github.com/bixbydevelopers/capsule-samples-collection处的http-api-calls示例

另请参见位于https://bixbydevelopers.com/dev/docs/reference/JavaScriptAPI/http#http-options的文档

© www.soinside.com 2019 - 2024. All rights reserved.