Firebase第一次无法使用?

时间:2018-07-02 17:27:48

标签: java android firebase firebase-realtime-database

我想生成一份报告pdf,以总订单和状态为需要的订单为基础

我有这段代码可以创建pdf并填写表格

curl -H "Content-Type: application/json" -X POST                      \
  "https://accounts.accesscontrol.windows.net/tenant/tokens/OAuth/2?" \
  -d "{\"grant_type\":\"client_credentials\",                         \
       \"client_id\":\"client@0tenant\",                              \
       \"client_secret\":\"client_secret\",                           \
       \"resource\":\"resource-string\"}"

第一次用这种方式向我展示我的pdf

  

enter image description here

但是第二次正确显示我

  

enter image description here

似乎第一次不起作用

1 个答案:

答案 0 :(得分:1)

就像@Jen Person所说的那样,您应该将// Monitoring support. private val metrics = serviceHub.monitoringService.metrics init { metrics.register("Flows.InFlight", Gauge<Int> { mutex.content.stateMachines.size }) } private val checkpointingMeter = metrics.meter("Flows.Checkpointing Rate") private val totalStartedFlows = metrics.counter("Flows.Started") private val totalFinishedFlows = metrics.counter("Flows.Finished") 放在createTemplate(rowqa)回调中,否则,当您第一次单击按钮时,onDataChange为空,因此{ {1}}将获得一个空的PDF。

一个例子:

rowqa