bind(this)不能在ajax成功函数上工作

我使用react和jQuery。 这是我的代码的一部分。

在响应组件安装之前,我执行ajax请求以了解用户是否已登录。

当响应返回状态代码200时,应该设置状态。
我错误地使用bind(this)吗?

 componentWillMount: function(){ $.ajax({ url: "/is_signed_in", method: "GET", dataType: "json" }).success(function(response){ this.setState({ signedIn: response.signed_in, currentUser: $.parseJSON(response.current_user) }); }.bind(this)); }, componentDidMount: function(){ console.log(this.state.signedIn); } 

编辑01

当我做console.log(this); success(function(response){...})回调。

this是下面的。

 R…sc…s.Constructor {props: Object, context: Object, state: Object, refs: Object, _reactInternalInstance: ReactCompositeComponentWrapper}_reactInternalInstance: ReactCompositeComponentWrapper_context: Object_currentElement: ReactElement_instance: ReactClass.createClass.Constructor_isOwnerNecessary: false_isTopLevel: false_mountImage: null_mountIndex: 0_mountOrder: 2_pendingCallbacks: null_pendingElement: null_pendingForceUpdate: false_pendingReplaceState: false_pendingStateQueue: null_renderedComponent: ReactCompositeComponentWrapper_rootNodeID: ".0"_warnedAboutRefsInRender: false__proto__: ReactCompositeComponentWrappercontext: Object__proto__: Object__defineGetter__: __defineGetter__()__defineSetter__: __defineSetter__()__lookupGetter__: __lookupGetter__()__lookupSetter__: __lookupSetter__()constructor: Object()hasOwnProperty: hasOwnProperty()isPrototypeOf: isPrototypeOf()propertyIsEnumerable: propertyIsEnumerable()toLocaleString: toLocaleString()toString: toString()valueOf: valueOf()get __proto__: get __proto__()set __proto__: set __proto__()getDOMNode: ()__reactBoundArguments: null__reactBoundContext: ReactClass.createClass.Constructor__reactBoundMethod: ()arguments: (...)bind: (newThis )caller: (...)length: 0name: ""__proto__: ()[[TargetFunction]]: ()[[BoundThis]]: ReactClass.createClass.Constructor[[BoundArgs]]: Array[0]props: Objectrefs: Object__proto__: ObjectrenderButtonSet: ()setSignedIn: ()__reactBoundArguments: null__reactBoundContext: ReactClass.createClass.Constructor__reactBoundMethod: setSignedIn(response)arguments: (...)caller: (...)length: 1name: "setSignedIn"prototype: setSignedIn__proto__: ()arguments: (...)bind: (newThis )arguments: (...)caller: (...)length: 1name: ""prototype: boundMethod.bind__proto__: ()caller: (...)length: 1name: ""__proto__: ()[[TargetFunction]]: setSignedIn(response)[[BoundThis]]: ReactClass.createClass.Constructor[[BoundArgs]]: Array[0]state: ObjectcurrentUser: Objectcreated_at: "2015-07-24T18:30:38.772+09:00"email: "admin@gmail.com"facebook_account_url: nullfirstName: "유찬"github_account_url: nullgoogleplus_account_url: nullid: 1lastName: "서"linkedin_account_url: nullsns_avatar: nulltwitter_account_url: nullupdated_at: "2015-08-14T02:14:21.091+09:00"__proto__: ObjectsignedIn: true__proto__: Object__proto__: ReactClassComponent 

解决方案
我上面的代码是反模式的。
遵循我采用的答案建议的方法之一。 另外,React文档已经为我的案例提供了非常有用的解决方案: 通过AJAX加载初始数据

此外,setState是异步的。
这就是为什么当我在控制台上登录时,我认为setState不起作用。
毕竟,我检查内部渲染并作为道具传递给子组件。

我认为你不应该在componentWillMount中对setState使用Ajax调用; 在componentDidMount中执行此操作

如果您不想在获取数据之前进行第一次渲染并且这些数据仅用于初始化,请在外部执行调用,并在成功时使用获取的数据渲染视图=====>

  and then put it in getInitialState 

如果您选择此路径,请阅读此内容(原因如文档中所述,这在某些条件下不是反模式): https : //facebook.github.io/react/tips/props-in-getInitialState-as-anti- pattern.html

希望能帮助到你

编辑:有两种方法可以在您的反应类之外获取第一个

  $.ajax({...}).success(function(res) {  // render your function on success }); 

在MyView中你可以从道具“数据”中获取getInitialState。 仅当您需要调用get一次时才使用此方法(阅读反模式内容)。

其他方法是在componentDidMount中执行您正在执行的操作。 https://facebook.github.io/react/tips/initial-ajax.html

希望它更清楚