import React from 'react'
import { Link } from 'react-router'
var result;var response;var jsonString ;var msg;
var xhr = new XMLHttpRequest();
var xhrPost = new XMLHttpRequest();
function xhrGetCall(getUrl){
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
result = xhr.responseText;
jsonString = JSON.parse(result);
console.log('API data retrieved:'+jsonString);
return result;
}
}
xhr.open('GET', getUrl, true);
xhr.setRequestHeader("Access-Control-Allow-Origin", true);
xhr.setRequestHeader( 'Content-Type', 'application/json' );
xhr.send(null);
xhr.onerror = function(xhr, textStatus, errorThrown) {
console.log( 'The data failed to load :('+JSON.stringify(xhr));
};
};
function xhrPostCall(jsonInput, postUrl){
xhrPost.open("POST",postUrl, true);
xhrPost.setRequestHeader("Content-type", "application/json");
xhrPost.onreadystatechange = function() {
if(xhrPost.readyState == XMLHttpRequest.DONE && xhrPost.status == 200) {
msg="succesful!";
console.log('posting succesful'+jsonInput);
}
else {
msg="failed!";
alert('msg is:'+msg);
console.log('posting unsuccesful'+msg);
}
}
xhrPost.send(jsonInput);
return msg;
}
class AddDetailsModal extends React.Component {
constructor(props) {
super(props);
this.state = {UserName: ''};
this.handleChangeUserName = this.handleChangeUserName.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
this.handleClick=this.handleClick.bind(this);
xhrGetCall(this.props.getUrl);
xhr.onload = function() {
response = JSON.parse(xhr.responseText);
this.setState({apiReturnValue:jsonToHtmlSelect(response)});
}.bind(this);
}
componentDidMount(){
}
handleChangeUserName(event) {
this.setState({UserName: event.target.value});
}
handleSubmit(event) {
var str = {"UserName": this.state.UserName};
var json = JSON.stringify(str);
xhrPostCall(json,this.props.postUrl);
this.setState({msg:xhrPostCall()});
console.log("testing: msg:"+msg);
$('#AddDetailsModal').on('hidden.bs.modal', function (e) {
$(this)
.find("input,textarea")
.val('')
.end()
.find("input[type=checkbox], input[type=radio]")
.prop("checked", "")
.end();
})
}
render() {
return (
<div>
<div id="AddDetailsModal" className="modal fade" role="dialog">
<div className="modal-dialog">
<div className="modal-content">
<div className="modal-header">
<button type="button" className="close" data-dismiss="modal">×</button>
<h4 className="modal-title">Add Details</h4>
</div>
<div className="modal-body">
<div className="form-group">
<label className="col-sm-0 control-label" htmlFor="textinput"> Name : </label>
<input type="text" value={this.state.UserName} onChange={this.handleChangeUserName} placeholder="Name" className="form-control"></input>
</div>
<div className="modal-footer">
<button type="submit" className="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="submit" value="submit" onClick={this.handleSubmit} className="btn btn-primary" data-dismiss="modal" data-toggle="modal" href="#AddMsgModal">Submit</button>
</div>
</div>
</div>
</div>
<div id="AddMsgModal" className="modal fade" role="dialog">
<div className="modal-dialog">
<div className="modal-content">
<div className="modal-header">
<button type="button" className="close" data-dismiss="modal">×</button>
<h4 className="modal-title">Message Heading</h4>
</div>
<div className="alert alert-success">
{msg}
</div>
<div className="modal-footer">
<button type="submit" className="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</div>
</div>
</div>
</div>
);
}
}
export default AddDetailsModal;
我做了一个react组件“AddDetailsModal”,它是引导表单模式,通过handleSubmit()函数成功或不成功提交表单,其他模式“AddMsgModal”应该会显示msg。
我无法访问react js的render()中的函数xhrPostCall中声明的msg变量。
请告诉我如何访问该变量?
1条答案
按热度按时间e0uiprwp1#
首先-使用一个类似fetch的库,创建一些 AJAX 请求。
第二步-如果您想自己创建,使用
Promise
创建异步操作:然后在组件中: