记录每个屏幕反应本机消耗的时间

时间:2019-05-27 04:14:41

标签: javascript reactjs firebase react-native react-native-firebase

我正在使用Firebase分析来分析应用程序的事件。

但是我需要检查(分析)用户在屏幕上花费了多少时间。

目前,我使用了这样的firebase事件:

cpx.populate_solution_pool()
numsol = cpx.solution.pool.get_num()
print("The solution pool contains %d solutions." % numsol)
meanobjval = cpx.solution.pool.get_mean_objective_value()

sol_pool = []
for i in range(numsol):
    objval_i = cpx.solution.pool.get_objective_value(i)
    x_i = cpx.solution.pool.get_values(i)
    nb_vars=len(x_i)
    sol = []
    for k in range(nb_vars):
        sol.append(x_i[k])
    sol_pool.append(sol)
print("pools =",sol_pool)

因此,这两个参数都显示在firebase上,但是如何获取值,就像我添加了一个参数componentDidMount(){ let randomNum = Math.floor((Math.random() * 10000000000) + 1); // console.log('random NUm ****** ',randomNum) firebaseApp.analytics().logEvent('Buy_Flow_Stage_1',{saleId: randomNum, trackingTime:Date.now()}); } 一样,那么我可以看到该参数,但看不到它的值。

enter image description here

0 个答案:

没有答案