我需要在鼠标悬停时使用数据库(如下图所示)从数据库中获取和显示数据,并在鼠标关闭时消失。
这是模型
password
控制器
<ScrollableTabView
renderTabBar={() => <DfyTabBar tabNames={tabNames} tabIconNames={tabIconNames} />}
>
...
</ScrollableTabView>
DfyTabBar class's render
<TouchableOpacity onPress={()=>this.props.goToPage(i)} style={styles.tab} key={tab}>
<View style={styles.tabItem}>
<Icon
name={this.props.tabIconNames[i]} // all icons
size={30}
color={color}
/>
<Text style={{color: color}}>
{this.props.tabNames[i]}
</Text>
</View>
</TouchableOpacity>
查看: -
public function teacher_with_subject(){
$this->db->select('*')
->from('teacher AS t')
->join('teacher_subject ts','t.computer_number=ts.computer_number', 'left')
->where('t.date_of_termination','0000-00-00')
->where('ts.date_of_end','0000-00-00');
$query = $this->db->get(); return $query->result_array();
}
我希望在鼠标名称显示时显示邮寄地址和电子邮件地址