ReactiveVar未定义

时间:2016-05-01 14:55:11

标签: variables meteor

https://jsfiddle.net/o78fjwbq/2/

/**
 * @param width                    video width
 * @param height                   video width
 * @param unappliedRotationDegrees ?
 * @param pixelRatio               (optional) pixel ratio
 */
@Override
public void onVideoSizeChanged(int width, int height, int unappliedRotationDegrees, float pixelRatio) {
    if (!mRatioAlreadyCalculated && mVideoWidthHeightRatio != (float) width / height) {
        mVideoWidthHeightRatio = ((float) width / height) * pixelRatio;
        mRatioAlreadyCalculated = true;
    }
    updateVideoRatio();
}

我迭代数据和reactiveVar将在帮助器中定义,将查询与数据库进行比较以进行预留,这将用于确定是否可以对房间类型进行预留。我试过返回reactiveVar.get.set模式,但那显然不起作用。

未见参考错误:未定义feckinHell。

1 个答案:

答案 0 :(得分:0)

如果您使用meteor 1.3,那么首先必须导入它。像这样

import { ReactiveVar } from 'meteor/reactive-var'

如果您使用的是较少版本,请确保安装了反应性var包,因为它不是预先安装的包。