如何使用find(' first')从数据库中检索值

时间:2015-07-23 10:48:28

标签: php cakephp find

我有两个名为locationstemperature_readings的模型在localhost上工作:

地点的组成部分:id, name, high_threshold, low_threshold

temperature_readings的组件:id, created, temperature, location_id

我尝试为我的应用做一些条件,我需要获得temperaturehigh_thresholdlow_threshold的值。

我在模型temperatureReadings.php工作,我通过写

得到温度值
$temperature = $this->data['TemperatureReading']['temperature'];

因为我在模特temperatureReadings.php工作。

low_thresholdhigh_threshold位于模型locations.php中。

所以,

如何使用low_threshold模型high_threshold获取值find('first')temperatureReadings.php

0 个答案:

没有答案