jquery autocomplete正在显示&作为&

时间:2016-09-04 15:31:05

标签: jquery

Db字段中的文本 - 测试&测试

在Jquery Auto complete中显示 - 测试和放大器测试

class FetchExample extends Component {

  constructor(props) {
    super(props);
    // Initialize the hardcoded test data - to be replaced by JOSN fetch
    let data = {"Vehicles":[[
      {"vehicle_make": "Toyota", 
      "vehicle_model": "Camry", 
      "vehicle_year": "2015", 
      "vehicle_price_range": "$$ (10-30)", 
      "car_id": 1127, 
      "vehicle_color": "Black", 
      "vehicle_car_accidents": "No", 
      "vehicle_no_owners": "1", 
      "car_vehicle_location": "Lot", 
      "vehicle_city_location": "L.A", 
      "vehicle_mileage": 10864, 
      "vehicle_vin": 1234, 
      "vehicle_off_lease": "Yes", 
      "vehicle_state": "CA"
    }]]};
    const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
    this.state = {
      dataSource: ds.cloneWithRows(data)
    };
    console.log(data);
  }
  render() {
    return (
      <View style={{paddingTop: 22}}>
        <ListView
          dataSource={this.state.dataSource}
          renderRow={(rowData) => <Text>{rowData.Vehicles}</Text>}
        />
      </View>
    );
  }
}

PHP代码(从DB获取数据并返回Jquery):

Jquery Code:
$(function(){
    $("#search_client_input").autocomplete({
      source: url+"get_alike_clients",
      minLength: 1
    });
  });

不确定如何解决这个问题,因为它出现在所有有&amp;的名字中。以它的名字。

0 个答案:

没有答案