在函数中加载页面

时间:2018-11-06 07:07:42

标签: ajax reactjs load fetch

我想通过post方法在传递结果的同时加载页面结果(flyrules.inc)(id:desc)。我应该使用哪个组件?如何使用?此代码不正确。我应该使用哪个组件而不是ajax代码?

         renderdesc(Flightdesc){
                            var desc = Flightdesc.info.departureinformation.routeshow.description
                            if (typeof desc === 'string'){
                            return                    
                               $.ajax({
                               url:"/flyrules.inc",
                               type:"post",
                               data:{
                               id:desc
                               }
                               success:(result)=>{
                               console.log("yes")
                                  }
                                }) 
                            }else if(typeof desc === 'object'){
                                return 
                                <span></span>
                            }
                        }

0 个答案:

没有答案