RN v0.42.0
这是我的代码:
_fbAuth(error,result) { if (error) { console.log("error"); alert("login has error: " + result.error); } else if (result.isCancelled) { console.log("login cancelled"); alert("login is cancelled."); } else { Accesstoken.getCurrentAccesstoken().then((data) => { console.log("login success"); console.log(data.accesstoken.toString()); let accesstoken = data.accesstoken; alert(data.accesstoken.toString()); const responseInfoCallback = (error,result) => { if (error) { console.log(error); } else { console.log(result); } } const infoRequest = new GraphRequest( '/me',{ accesstoken: accesstoken,parameters: { fIElds: { string: 'email,name,first_name,mIDdle_name,last_name' } } },responseInfoCallback ); // Start the graph request. new GraphRequestManager().addRequest(infoRequest).start(); }); } } render() { console.log("in new render"); return ( <VIEw style={styles.container}> <Loginbutton publishPermissions={["publish_actions"]} onLoginFinished={this._fbAuth} onlogoutFinished={() => alert("logout.")}/> </VIEw> ); }
调试器中打印的错误信息:
在函数responseInfoCallback中调用graphAPI时会收到上述错误.任何想法发生了什么?
更新1:
只有当远程调试器打开时,才会发生此错误!否则没有发生.但是没有远程调试器,我无法继续开发应用程序.有什么其他方法可以看到远程调试器以外的反应原生应用程序的日志语句吗?
更新2:
RCTJsONStringify()错误只发生在代理后面.并且https访问呼叫在代理下不起作用.我在一个开放的网络中测试,工作正常.我想,它是向RN应用程序添加一些代理信息.我认为这与APP transport security有关
解决方法 如果关闭调试器,您可以在XCode控制台中看到正确的错误.从Xcode菜单查看/调试区域/激活控制台(如果没有自动启用). 总结以上是内存溢出为你收集整理的ios – 反应本机错误RCTJSONStringify()遇到以下错误:JSON写入中的无效类型(NSURL)全部内容,希望文章能够帮你解决ios – 反应本机错误RCTJSONStringify()遇到以下错误:JSON写入中的无效类型(NSURL)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)