我有两个名为locations
和temperature_readings
的模型在localhost上工作:
地点的组成部分:id, name, high_threshold, low_threshold
。
temperature_readings的组件:id, created, temperature, location_id
。
我尝试为我的应用做一些条件,我需要获得temperature
,high_threshold
和low_threshold
的值。
我在模型temperatureReadings.php
工作,我通过写
$temperature = $this->data['TemperatureReading']['temperature'];
因为我在模特temperatureReadings.php
工作。
值low_threshold
和high_threshold
位于模型locations.php
中。
所以,
如何使用low_threshold
模型high_threshold
获取值find('first')
和temperatureReadings.php
?