codeigniter,如何显示悬停文本的详细信息

时间:2017-02-20 06:26:11

标签: javascript php codeigniter

我需要在鼠标悬停时使用数据库(如下图所示)从数据库中获取和显示数据,并在鼠标关闭时消失。

这是模型

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();
}

我希望在鼠标名称显示时显示邮寄地址和电子邮件地址

0 个答案:

没有答案