Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/asp.net-core/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript ReactJs |仅在URL中显示所选值_Javascript_Reactjs - Fatal编程技术网

Javascript ReactJs |仅在URL中显示所选值

Javascript ReactJs |仅在URL中显示所选值,javascript,reactjs,Javascript,Reactjs,我是新来的。请一些天才帮我解决这个问题好吗? 我正在开发一个电子药房网站,让用户首先选择一个首选地区,然后从该地区选择一家药房。我列出了所有的地区以及一个下拉菜单,其中显示了该地区的所有药店。然后,用户可以向所选药店下单。 当用户发布订单时,我通过URL传递所选的药房Id 如果我有3个地区,并且我从第三个地区选择了一家药店,URL如下所示: http://localhost:3000/uploadlist?phmcy=&phmcy=&phmcy=1 (此处所选药房的id为“1”) URL还显示所

我是新来的。请一些天才帮我解决这个问题好吗? 我正在开发一个电子药房网站,让用户首先选择一个首选地区,然后从该地区选择一家药房。我列出了所有的地区以及一个下拉菜单,其中显示了该地区的所有药店。然后,用户可以向所选药店下单。 当用户发布订单时,我通过URL传递所选的药房Id

如果我有3个地区,并且我从第三个地区选择了一家药店,URL如下所示:

http://localhost:3000/uploadlist?phmcy=&phmcy=&phmcy=1 (此处所选药房的id为“1”)

URL还显示所有未选择的值。我的首选是仅显示所选药店的Id。 我只希望显示选定的值。像这样:

http://localhost:3000/uploadlist?phmcy=1

这是我的密码:

地区组件:(客户可以在其中选择地区)

import React,{Component}来自'React';
//从'react Router dom/cjs/react Router dom.min'导入{Router};
从“react router dom”导入{Link,withRouter};
导入“/district.css”;
从“/Upload.component”导入上载;
从“/Districtpharmacy.component”导入Districtpharmacy;
类。组件{
状态={
药房:[]
};
render(){
返回(
选择您所在的地区和附近的药房
请只选择一个药房

export default function Uploadlist() {
    let myphmcy = (new URLSearchParams(window.location.search)).get("phmcy")
    
    console.log(myphmcy);


    const ordersAPI= (url='https://localhost:44357/api/Orders') => {
        return {
            fetchAll: () => axios.get(url),
            create: newRecord => axios.post(url, newRecord),
            update: (id, updateRecord) => axios.put(url + id, updateRecord),
            delete: id => axios.delete(url+id)
        }
    }
 
    const addOrEdit = (formData, onSuccess) => {

        ordersAPI().create(formData)
        .then(res => {
            onSuccess();
        })
        .catch(err => console.log(err.response.data))
    }

    return (
        <div className="row">
            <div className="jumbotron jumbotron-fluid py-4 "></div>
            <div className="container text">
                <h1 className="display-4"> Order Register</h1>
            </div>
            <div className="col-md-4 offset-3">
                <Upload //this is the child component where the order form is built.
                    addOrEdit = {addOrEdit}
                    myphmcy = {myphmcy}
                />
                </div> 
                <div className="col-md-1">
                    <div> </div>
                </div>
            
        </div>
    )
}

添加 ); } } 使用路由器导出默认值(地区);
district.pharmacy组件:(返回下拉菜单的位置。)

import React,{Component}来自'React';
//从'react Router dom/cjs/react Router dom.min'导入{Router};
从“react router dom”导入{Link};
导入“/district.css”;
//从“/Upload.component”导入上载;
类DistrictReact.Component{
状态={
药房:[],
地区:this.props.District
};
componentDidMount(){
console.log(this.state)
取回(“https://localhost:44357/api/Pharmacies?field=district&value=“+这个.道具.地区)
.then(response=>response.json())
.then(pharmacy=>this.setState({pharmacy:pharmacy}));
//console.log(this.state)
}      
render(){
//console.log(this.state)
const pharm=this.state.pharmacy.map((药房)=>{
返回({pharmacies.pharmacyname},{pharmacies.address})
返回(
{this.props.district}
选择药房{pharm}
)
}
}
导出默认分区
有人能帮我吗

编辑:

订单过账表:

父文件:(uploadlist.js)(从url获取“phmcy”值。此文件在选择药房后触发)

导出默认函数Uploadlist(){
让myphmcy=(新的URLSearchParams(window.location.search)).get(“phmcy”)
console.log(myphmcy);
常量ordersAPI=(url=)https://localhost:44357/api/Orders') => {
返回{
fetchAll:()=>axios.get(url),
create:newRecord=>axios.post(url,newRecord),
update:(id,updateRecord)=>axios.put(url+id,updateRecord),
delete:id=>axios.delete(url+id)
}
}
const addOrEdit=(formData,onSuccess)=>{
ordersAPI().create(formData)
。然后(res=>{
onSuccess();
})
.catch(err=>console.log(err.response.data))
}
返回(
订单登记簿
)
}
子文件:


const initialFieldValues ={
    orderID:0, 
    date_time:'',
    status:'',
    status2:'',
    pharmacyName:'',
    customerName:'',
    patientName:'',
    patientAge:'',
    address:'',
    email:'',
    teleNo:'',
    customer_id:1,
    pharmacy_id:0,//data obtaind from the URL have to posted as the pharmacyID when posting. 
    image:'',
    imageSource:'',
    imageData: null
    
}


export default function Upload(props) {

    const {addOrEdit} = props

    const {myphmcy} = props
     console.log(myphmcy);
    const [values, setValues] = useState(initialFieldValues)
    const[errors, setErrors] = useState({})

    const handleInputChange= e => {
        const {name, value} = e.target;
        setValues({
            ...values,
            [name]:value
        })
        
    }

    /*const addOrEdit = (formData, onSuccess) => {

        ordersAPI().create(formData)
        .then(res => {
            onSuccess();
        })
        .catch(err => console.log(err.response.data))
    }*/

    const showPreview = e => {
        if(e.target.files && e.target.files[0]){
            let imageData = e.target.files[0];
            const reader = new FileReader();
            reader.onload = x => {
                setValues({
                    ...values,
                    imageData,
                    imageSource : x.target.result
                    
                })
                
            }
            reader.readAsDataURL(imageData)
        }

        else{
            setValues({
                ...values,
                imageData:null,
                imageSource:''
            })
        }

    }

    const validate = () => {
        let temp = {}
        temp.customerName = values.customerName == "" ? false : true;
        setErrors(temp)
        return Object.values(temp).every(x => x == true)
    }

    const resetForm = () => {
        setValues(initialFieldValues)
        document.getElementById('image-uploader').value = null;
    }

    const handleFormSubmit = e => {
        e.preventDefault()
        if (validate()){
        
        const formData = new FormData()
        
        formData.append('orderID',values.orderID)
        formData.append('date_time',values.date_time)
        formData.append('status',values.status)
        formData.append('status2',values.status2)
        formData.append('pharmacyName',values.pharmacyName)
        formData.append('customerName',values.customerName)
        formData.append('patientName',values.patientName)
        formData.append('patientAge',values.patientAge)
        formData.append('address',values.address)
        formData.append('email',values.email)
        formData.append('teleNo',values.teleNo)
        formData.append('customer_id',values.customer_id)
        formData.append('pharmacy_id',myphmcy)
        formData.append('image',values.image)
        formData.append('imageData',values.ImageData)
        addOrEdit(formData, resetForm) 

        alert("Your file is being uploaded!")
    }
}

const applyErrorClass = field => ((field in errors && errors[field] == false) ? ' invalid-field' : '')


    

    return (
        <>
        <div className="container text-center ">
            <p className="lead"></p>
        </div>
        <form autoComplete="off" noValidate onSubmit={handleFormSubmit}>
            <div className="card">
                <div className="card-header text-center">Place Your Order Here</div>
            
            <img src={values.imageSource} className="card-img-top"/>

                <div className="card-body">

                    <div className="form-group">
                        <input type="file" accept="image/*" className="form-control-file" onChange={showPreview} id="image-uploader"/> 
                    </div>
                    <div className="form-group">
                        <input type="datetime-local" className="form-control" placeholder="Date Time" name="date_time" value={values.date_time}
                       onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Enter the prescription items and qty" name="status" value={values.status} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="What are the symptoms?" name="status2" value={values.status2} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Pharmacy Name" name="pharmacyName" value={values.pharmacyName} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className={"form-control" + applyErrorClass('customerName')}  placeholder="Your Name" name="customerName" value={values.customerName} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Patient Name" name="patientName" value={values.patientName} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Patient Age" name="patientAge" value={values.patientAge} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Delivery address" name="address" value={values.address} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Your Email" name="email" value={values.email} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Contact Number" name="teleNo" value={values.teleNo} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group text-center">
                        <button type="submit" className="btn btn-light">submit</button>
                        
                    </div>
                    

                </div>
            </div>
        </form>
    </>
    )
}

常量初始字段值={
医嘱ID:0,
日期和时间:“”,
状态:“”,
状态2:“”,
pharmacyName:“”,
客户名称:'',
患者姓名:'',
耐心地说:,
地址:'',
电子邮件:“”,
电话号码:'',
客户识别号:1,
pharmacy_id:0,//从URL获取的数据在发布时必须作为pharmacyID发布。
图像:“”,
图像源:“”,
imageData:空
}
导出默认功能上传(道具){
常量{addOrEdit}=props
常量{myphmcy}=props
console.log(myphmcy);
const[values,setValues]=useState(initialFieldValues)
const[errors,setErrors]=useState({})
常量handleInputChange=e=>{
常量{name,value}=e.target;
设定值({
价值观
[名称]:值
})
}
/*const addOrEdit=(formData,onSuccess)=>{
ordersAPI().create(formData)
。然后(res=>{
onSuccess();
})
.catch(err=>console.log(err.response.data))
}*/
const showPreview=e=>{
if(e.target.files&&e.target.files[0]){
设imageData=e.target.files[0];
const reader=new FileReader();
reader.onload=x=>{
设定值
export default function Uploadlist() {
    let myphmcy = (new URLSearchParams(window.location.search)).get("phmcy")
    
    console.log(myphmcy);


    const ordersAPI= (url='https://localhost:44357/api/Orders') => {
        return {
            fetchAll: () => axios.get(url),
            create: newRecord => axios.post(url, newRecord),
            update: (id, updateRecord) => axios.put(url + id, updateRecord),
            delete: id => axios.delete(url+id)
        }
    }
 
    const addOrEdit = (formData, onSuccess) => {

        ordersAPI().create(formData)
        .then(res => {
            onSuccess();
        })
        .catch(err => console.log(err.response.data))
    }

    return (
        <div className="row">
            <div className="jumbotron jumbotron-fluid py-4 "></div>
            <div className="container text">
                <h1 className="display-4"> Order Register</h1>
            </div>
            <div className="col-md-4 offset-3">
                <Upload //this is the child component where the order form is built.
                    addOrEdit = {addOrEdit}
                    myphmcy = {myphmcy}
                />
                </div> 
                <div className="col-md-1">
                    <div> </div>
                </div>
            
        </div>
    )
}

const initialFieldValues ={
    orderID:0, 
    date_time:'',
    status:'',
    status2:'',
    pharmacyName:'',
    customerName:'',
    patientName:'',
    patientAge:'',
    address:'',
    email:'',
    teleNo:'',
    customer_id:1,
    pharmacy_id:0,//data obtaind from the URL have to posted as the pharmacyID when posting. 
    image:'',
    imageSource:'',
    imageData: null
    
}


export default function Upload(props) {

    const {addOrEdit} = props

    const {myphmcy} = props
     console.log(myphmcy);
    const [values, setValues] = useState(initialFieldValues)
    const[errors, setErrors] = useState({})

    const handleInputChange= e => {
        const {name, value} = e.target;
        setValues({
            ...values,
            [name]:value
        })
        
    }

    /*const addOrEdit = (formData, onSuccess) => {

        ordersAPI().create(formData)
        .then(res => {
            onSuccess();
        })
        .catch(err => console.log(err.response.data))
    }*/

    const showPreview = e => {
        if(e.target.files && e.target.files[0]){
            let imageData = e.target.files[0];
            const reader = new FileReader();
            reader.onload = x => {
                setValues({
                    ...values,
                    imageData,
                    imageSource : x.target.result
                    
                })
                
            }
            reader.readAsDataURL(imageData)
        }

        else{
            setValues({
                ...values,
                imageData:null,
                imageSource:''
            })
        }

    }

    const validate = () => {
        let temp = {}
        temp.customerName = values.customerName == "" ? false : true;
        setErrors(temp)
        return Object.values(temp).every(x => x == true)
    }

    const resetForm = () => {
        setValues(initialFieldValues)
        document.getElementById('image-uploader').value = null;
    }

    const handleFormSubmit = e => {
        e.preventDefault()
        if (validate()){
        
        const formData = new FormData()
        
        formData.append('orderID',values.orderID)
        formData.append('date_time',values.date_time)
        formData.append('status',values.status)
        formData.append('status2',values.status2)
        formData.append('pharmacyName',values.pharmacyName)
        formData.append('customerName',values.customerName)
        formData.append('patientName',values.patientName)
        formData.append('patientAge',values.patientAge)
        formData.append('address',values.address)
        formData.append('email',values.email)
        formData.append('teleNo',values.teleNo)
        formData.append('customer_id',values.customer_id)
        formData.append('pharmacy_id',myphmcy)
        formData.append('image',values.image)
        formData.append('imageData',values.ImageData)
        addOrEdit(formData, resetForm) 

        alert("Your file is being uploaded!")
    }
}

const applyErrorClass = field => ((field in errors && errors[field] == false) ? ' invalid-field' : '')


    

    return (
        <>
        <div className="container text-center ">
            <p className="lead"></p>
        </div>
        <form autoComplete="off" noValidate onSubmit={handleFormSubmit}>
            <div className="card">
                <div className="card-header text-center">Place Your Order Here</div>
            
            <img src={values.imageSource} className="card-img-top"/>

                <div className="card-body">

                    <div className="form-group">
                        <input type="file" accept="image/*" className="form-control-file" onChange={showPreview} id="image-uploader"/> 
                    </div>
                    <div className="form-group">
                        <input type="datetime-local" className="form-control" placeholder="Date Time" name="date_time" value={values.date_time}
                       onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Enter the prescription items and qty" name="status" value={values.status} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="What are the symptoms?" name="status2" value={values.status2} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Pharmacy Name" name="pharmacyName" value={values.pharmacyName} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className={"form-control" + applyErrorClass('customerName')}  placeholder="Your Name" name="customerName" value={values.customerName} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Patient Name" name="patientName" value={values.patientName} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Patient Age" name="patientAge" value={values.patientAge} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Delivery address" name="address" value={values.address} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Your Email" name="email" value={values.email} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group">
                        <input className="form-control" placeholder="Contact Number" name="teleNo" value={values.teleNo} onChange={ handleInputChange}/>
                    </div>

                    <div className="form-group text-center">
                        <button type="submit" className="btn btn-light">submit</button>
                        
                    </div>
                    

                </div>
            </div>
        </form>
    </>
    )
}