草庐IT

ios - 仅在设备上出现 RestSharp/MonoTouch 错误

coder 2024-01-20 原文

我遇到了这个只发生在设备上而不是模拟器上的错误。 我正在尝试保存包含以下字段的用户配置文件:名字、姓氏、电子邮件、性别、出生日期和可选照片 (byte[])。

无论我是否使用照片,调用 API 后我都会立即收到此错误。看起来错误与 Rest 反序列化有关。

Stacktrace:

at RestSharp.RestClient.Deserialize<T> (RestSharp.IRestRequest,RestSharp.RestResponse) <0x001ab>
at RestSharp.RestClient/<ExecuteAsync>c__AnonStorey9`1.<>m__19 (RestSharp.RestResponse,RestSharp.RestRequestAsyncHandle) <0x00147>
at RestSharp.RestClient.ProcessResponse (RestSharp.HttpResponse,RestSharp.RestRequestAsyncHandle,System.Action`2<RestSharp.RestResponse, RestSharp.RestRequestAsyncHandle>) <IL 0x0000b, 0x000db>
at RestSharp.RestClient/<ExecuteAsync>c__AnonStorey8.<>m__15 (RestSharp.HttpResponse) <IL 0x00013, 0x0009b>
at RestSharp.Http.ExecuteCallback (RestSharp.HttpResponse,System.Action`1<RestSharp.HttpResponse>) <IL 0x00002, 0x00093>
at RestSharp.Http/<ResponseCallback>c__AnonStorey6.<>m__5 (System.Net.HttpWebResponse) <IL 0x00018, 0x000c3>
at RestSharp.Http.GetRawResponseAsync (System.IAsyncResult,System.Action`1<System.Net.HttpWebResponse>) <IL 0x0005f, 0x0078b>
at RestSharp.Http.ResponseCallback (System.IAsyncResult,System.Action`1<RestSharp.HttpResponse>) <IL 0x00060, 0x00363>
at RestSharp.Http/<RequestStreamCallback>c__AnonStorey5.<>m__4 (System.IAsyncResult) <IL 0x0000d, 0x00093>
at System.Net.WebAsyncResult.CB (object) [0x00000] in /Developer/MonoTouch/Source/mono/mcs/class/System/System.Net/WebAsyncResult.cs:148
at (wrapper runtime-invoke) object.runtime_invoke_dynamic (intptr,intptr,intptr,intptr) <0xffffffff>

Native stacktrace:

0   ScrapBoomiPhone                     0x00f5c5e5 mono_handle_native_sigsegv + 244
1   ScrapBoomiPhone                     0x00f7560d sigabrt_signal_handler + 112
2   libsystem_c.dylib                   0x34e5ce93 _sigtramp + 42
3   libsystem_c.dylib                   0x34e53123 pthread_kill + 58
4   libsystem_c.dylib                   0x34e8f973 abort + 94
5   ScrapBoomiPhone                     0x010160bb monoeg_g_log + 122
6   ScrapBoomiPhone                     0x00f52383 get_numerous_trampoline + 134
7   ScrapBoomiPhone                     0x00f5264b mono_aot_get_imt_thunk + 34
8   ScrapBoomiPhone                     0x00fc5e05 initialize_imt_slot + 72
9   ScrapBoomiPhone                     0x00fc6bcb build_imt_slots + 642
10  ScrapBoomiPhone                     0x00fc6ca5 mono_vtable_build_imt_slot + 80
11  ScrapBoomiPhone                     0x00f5e60d mono_convert_imt_slot_to_vtable_slot + 212
12  ScrapBoomiPhone                     0x00f5e7b9 common_call_trampoline + 180
13  ScrapBoomiPhone                     0x00f5d48b mono_vcall_trampoline + 158
14  ScrapBoomiPhone                     0x00752bd8 generic_trampoline_vcall + 136
15  ScrapBoomiPhone                     0x002656bc RestSharp_RestClient__ExecuteAsyncc__AnonStorey9_1__m__19_RestSharp_RestResponse_RestSharp_RestRequestAsyncHandle + 328
16  ScrapBoomiPhone                     0x0020d7a4 RestSharp_RestClient_ProcessResponse_RestSharp_HttpResponse_RestSharp_RestRequestAsyncHandle_System_Action_2_RestSharp_RestResponse_RestSharp_RestRequestAsyncHandle + 220
17  ScrapBoomiPhone                     0x002651a8 RestSharp_RestClient__ExecuteAsyncc__AnonStorey8__m__15_RestSharp_HttpResponse + 156
18  ScrapBoomiPhone                     0x001fe7d0 RestSharp_Http_ExecuteCallback_RestSharp_HttpResponse_System_Action_1_RestSharp_HttpResponse + 148
19  ScrapBoomiPhone                     0x00264c74 RestSharp_Http__ResponseCallbackc__AnonStorey6__m__5_System_Net_HttpWebResponse + 196
20  ScrapBoomiPhone                     0x001fe020 RestSharp_Http_GetRawResponseAsync_System_IAsyncResult_System_Action_1_System_Net_HttpWebResponse + 1932
21  ScrapBoomiPhone                     0x001fe41c RestSharp_Http_ResponseCallback_System_IAsyncResult_System_Action_1_RestSharp_HttpResponse + 868
22  ScrapBoomiPhone                     0x00264a9c RestSharp_Http__RequestStreamCallbackc__AnonStorey5__m__4_System_IAsyncResult + 148
23  ScrapBoomiPhone                     0x0035ad4c System_Net_WebAsyncResult_CB_object + 48
24  ScrapBoomiPhone                     0x006f7ff0 wrapper_runtime_invoke_object_runtime_invoke_dynamic_intptr_intptr_intptr_intptr + 200
25  ScrapBoomiPhone                     0x00f4a22f mono_jit_runtime_invoke + 1054
26  ScrapBoomiPhone                     0x00fc55ff mono_runtime_invoke + 90
27  ScrapBoomiPhone                     0x00fc5705 mono_runtime_delegate_invoke + 92
28  ScrapBoomiPhone                     0x00ff5ac1 async_invoke_thread + 2480
29  ScrapBoomiPhone                     0x00ff9c87 start_wrapper + 306
30  ScrapBoomiPhone                     0x0100ba5d thread_start_routine + 96
31  ScrapBoomiPhone                     0x00fdf939 gc_start_thread + 60
32  libsystem_c.dylib                   0x34e35311 <redacted> + 308
33  libsystem_c.dylib                   0x34e351d8 thread_start + 8

=================================================================
Got a SIGABRT while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=================================================================

我将非常感谢对此的任何见解。谢谢!

最佳答案

5 ScrapBoomiPhone 0x010160bb monoeg_g_log + 122

该行来自您的堆栈跟踪,暗示 Mono 运行时在崩溃之前尝试显示(记录)某些内容。在这种情况下,您应该使用 Xcode 的管理器来查看控制台日志。将打印一些文本,告诉您哪里出了问题。

最常见的情况(6.0.8 之前)是缺少蹦床(类型 0、1 或 2)。考虑到下面的堆栈框架,这更有可能:

6 ScrapBoomiPhone 0x00f52383 get_numerous_trampoline + 134

参见 here获取描述以及如何修复它(但您仍然需要阅读控制台以了解需要哪种蹦床类型 - 或者它可能是其他类型)。

注:其中一个(刚刚发布)MonoTouch 6.0.8 主要 新功能是它消除了(开发人员)更改此设置的需要(它会自动适应)。希望它的存在很快就会被完全遗忘。

关于ios - 仅在设备上出现 RestSharp/MonoTouch 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14132430/

有关ios - 仅在设备上出现 RestSharp/MonoTouch 错误的更多相关文章

  1. ruby-on-rails - Rails 常用字符串(用于通知和错误信息等) - 2

    大约一年前,我决定确保每个包含非唯一文本的Flash通知都将从模块中的方法中获取文本。我这样做的最初原因是为了避免一遍又一遍地输入相同的字符串。如果我想更改措辞,我可以在一个地方轻松完成,而且一遍又一遍地重复同一件事而出现拼写错误的可能性也会降低。我最终得到的是这样的:moduleMessagesdefformat_error_messages(errors)errors.map{|attribute,message|"Error:#{attribute.to_s.titleize}#{message}."}enddeferror_message_could_not_find(obje

  2. ruby-on-rails - 迷你测试错误 : "NameError: uninitialized constant" - 2

    我遵循MichaelHartl的“RubyonRails教程:学习Web开发”,并创建了检查用户名和电子邮件长度有效性的测试(名称最多50个字符,电子邮件最多255个字符)。test/helpers/application_helper_test.rb的内容是:require'test_helper'classApplicationHelperTest在运行bundleexecraketest时,所有测试都通过了,但我看到以下消息在最后被标记为错误:ERROR["test_full_title_helper",ApplicationHelperTest,1.820016791]test

  3. ruby-on-rails - 如何在 Rails View 上显示错误消息? - 2

    我是rails的新手,想在form字段上应用验证。myviewsnew.html.erb.....模拟.rbclassSimulation{:in=>1..25,:message=>'Therowmustbebetween1and25'}end模拟Controller.rbclassSimulationsController我想检查模型类中row字段的整数范围,如果不在范围内则返回错误信息。我可以检查上面代码的范围,但无法返回错误消息提前致谢 最佳答案 关键是您使用的是模型表单,一种显示ActiveRecord模型实例属性的表单。c

  4. 使用 ACL 调用 upload_file 时出现 Ruby S3 "Access Denied"错误 - 2

    我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file

  5. ruby-on-rails - 错误 : Error installing pg: ERROR: Failed to build gem native extension - 2

    我克隆了一个rails仓库,我现在正尝试捆绑安装背景:OSXElCapitanruby2.2.3p173(2015-08-18修订版51636)[x86_64-darwin15]rails-v在您的Gemfile中列出的或native可用的任何gem源中找不到gem'pg(>=0)ruby​​'。运行bundleinstall以安装缺少的gem。bundleinstallFetchinggemmetadatafromhttps://rubygems.org/............Fetchingversionmetadatafromhttps://rubygems.org/...Fe

  6. ruby - #之间? Cooper 的 *Beginning Ruby* 中的错误或异常 - 2

    在Cooper的书BeginningRuby中,第166页有一个我无法重现的示例。classSongincludeComparableattr_accessor:lengthdef(other)@lengthother.lengthenddefinitialize(song_name,length)@song_name=song_name@length=lengthendenda=Song.new('Rockaroundtheclock',143)b=Song.new('BohemianRhapsody',544)c=Song.new('MinuteWaltz',60)a.betwee

  7. ruby - 如何验证 IO.copy_stream 是否成功 - 2

    这里有一个很好的答案解释了如何在Ruby中下载文件而不将其加载到内存中:https://stackoverflow.com/a/29743394/4852737require'open-uri'download=open('http://example.com/image.png')IO.copy_stream(download,'~/image.png')我如何验证下载文件的IO.copy_stream调用是否真的成功——这意味着下载的文件与我打算下载的文件完全相同,而不是下载一半的损坏文件?documentation说IO.copy_stream返回它复制的字节数,但是当我还没有下

  8. ruby-on-rails - 每次我尝试部署时,我都会得到 - (gcloud.preview.app.deploy) 错误响应 : [4] DEADLINE_EXCEEDED - 2

    我是Google云的新手,我正在尝试对其进行首次部署。我的第一个部署是RubyonRails项目。我基本上是在关注thisguideinthegoogleclouddocumentation.唯一的区别是我使用的是我自己的项目,而不是他们提供的“helloworld”项目。这是我的app.yaml文件runtime:customvm:trueentrypoint:bundleexecrackup-p8080-Eproductionconfig.ruresources:cpu:0.5memory_gb:1.3disk_size_gb:10当我转到我的项目目录并运行gcloudprevie

  9. ruby-on-rails - Rails 5 Active Record 记录无效错误 - 2

    我有两个Rails模型,即Invoice和Invoice_details。一个Invoice_details属于Invoice,一个Invoice有多个Invoice_details。我无法使用accepts_nested_attributes_forinInvoice通过Invoice模型保存Invoice_details。我收到以下错误:(0.2ms)BEGIN(0.2ms)ROLLBACKCompleted422UnprocessableEntityin25ms(ActiveRecord:4.0ms)ActiveRecord::RecordInvalid(Validationfa

  10. Ruby 文件 IO 定界符? - 2

    我正在尝试解析一个文本文件,该文件每行包含可变数量的单词和数字,如下所示:foo4.500bar3.001.33foobar如何读取由空格而不是换行符分隔的文件?有什么方法可以设置File("file.txt").foreach方法以使用空格而不是换行符作为分隔符? 最佳答案 接受的答案将slurp文件,这可能是大文本文件的问题。更好的解决方案是IO.foreach.它是惯用的,将按字符流式传输文件:File.foreach(filename,""){|string|putsstring}包含“thisisanexample”结果的

随机推荐