Native-Base Picker无法正常运行Android - 不会触发onValueChange函数

问题描述 投票:1回答:2

我正在使用PickerNative-Base组件作为我的react-native应用程序。在IOS上一切都很好,而在Android方面,我无法触发我在onValueChange上添加的功能。

之前有人遇到过这个问题吗?

你怎么修好它的?我差不多一天都在这里。

这是我的代码。

<Picker style={{ width: 200, height: 40}}
                                    iosHeader="Branch"
                                    Header="Branch"
                                    mode="dropdown"
                                    textStyle={{color: 'white'}}
                                    placeholder="Branch"
                                    headerBackButtonText="Geri"
                                    selectedValue={this.state.selectedBranch}
                                    onValueChange={(value)=>this.onBranchSelected(value)}
                                >
                                    {this.state.branches.map((branches, i)=>{
                                            return(
                                                <Picker.Item label={branches.address_line} value={branches.id} key={i}/>
                                            );
                                        }
                                    )}
                                </Picker>

它不会在Android上调用onBranchSelected函数。

android react-native picker native-base
2个回答
2
投票

我尝试了你的代码,对我来说工作正常。

粘贴我的代码

import React, { Component } from "react";
import { Platform } from "react-native";
import { Container, Header, Title, Content, Button, Icon, Text, Right, Body, Left, Picker, Form } from "native-base";

export default class PickerExample extends Component {
  constructor(props) {
    super(props);
    this.state = {
      branches: [
        { address_line: 'address 1', id: 1 },
        { address_line: 'address 2', id: 2 },
        { address_line: 'address 3', id: 3 },
        { address_line: 'address 4', id: 4 },
        { address_line: 'address 5', id: 5 }],
      selected1: 1
    };
  }

  onBranchSelected(value) {
    this.setState({
      selectedBranch: value
    });
  }

  render() {
    return (
      <Container>
        <Header>
          <Left>
            <Button transparent>
              <Icon name="arrow-back" />
            </Button>
          </Left>
          <Body>
            <Title>Picker</Title>
          </Body>
          <Right />
        </Header>
        <Content>
          <Form>
            <Picker
              style={{ width: 200, height: 40 }}
              iosHeader="Branch"
              Header="Branch"
              mode="dropdown"
              textStyle={{ color: 'grey' }}
              placeholder='Select branch'
              headerBackButtonText='Geri'
              selectedValue={this.state.selectedBranch}
              onValueChange={(value) => this.onBranchSelected(value)}
            >
              {this.state.branches.map((branches, i) => {
                return (
                  <Picker.Item label={branches.address_line} value={branches.id} key={i} />
                );
              }
              )}
            </Picker>
          </Form>
        </Content>
      </Container>
    );
  }
}

Gif

依赖

"native-base": "2.3.5",
"react": "16.0.0",
"react-native": "0.50.0",

1
投票

这是Picker的已知问题。问题是尝试使用.map。我自己无法得到地图与Picker合作。我唯一能找到的是一个名为npmreact-native-smart-picker包,我可以使用.map。有局限性。

还有,我也试过其他的bootstrap框架,这是vanilla react-native的一个问题。

这是链接.. qazxsw poi

继承人我的github回购... https://www.npmjs.com/package/react-native-smart-picker

继承了我实现它的代码。

https://github.com/GavinThomas1192/motoMechanicMeeKanic/blob/master/App/Components/vehicleMakePicker.js

更新以显示我如何处理无可扩展按钮

<ScrollView>
  <View style={{ flex: 1, marginTop: 20 }}>
    {this.state.makes.length > 1 ?
      <ScrollView>
        <SmartPicker
          expanded={this.state.expanded}
          selectedValue={this.state.selectedMake}
          label='Select Make'
          onValueChange={this.handleChange.bind(this)}>
          {
            this.state.makes.map((ele) => {
              return (<Picker.Item label={ele} value={ele}/>);
            })
          }
          <Picker.Item label='Select Make' value='Toyota'/>
        </SmartPicker>
        <Button block onPress={() => this.props.vehicleMake(this.state.selectedMake)}>
          <Text>Done</Text>
        </Button>
      </ScrollView> : <Spinner/>
    }
  </View>
</ScrollView>

<Content> <Text>Vehicle Stats:</Text> <Text>Year: {this.state.vehicleYear}</Text> <Text>Make: {this.state.vehicleMake}</Text> <Text>Model: {this.state.vehicleModel}</Text> {this.state.vehicleYear === "" ? <VehicleYearPicker vehicleYear={this.yearPicked}/> : undefined} {this.state.vehicleYear !== "" && this.state.vehicleMake === "" ? <VehicleMakePicker pickedYear={this.state.vehicleYear} vehicleMake={this.makePicked}/> : undefined} {this.state.vehicleModel === "" && this.state.vehicleMake !== "" ? <VehicleModelPicker homeState={this.state} vehicleModel={this.modelPicked}/> : undefined} </Content>

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.