1

在 couchdb 中创建文档会产生以下错误,

12> ADoc.
[{<<"Adress">>,<<"Hjalmar Brantingsgatan 7 C">>},
 {<<"District">>,<<"Brämaregården">>},
 {<<"Rent">>,3964},
 {<<"Rooms">>,2},
 {<<"Area">>,0}]
13> IDoc.
[{<<"Adress">>,<<"Segeparksgatan 2A">>},
 {<<"District">>,<<"Kirseberg">>},
 {<<"Rent">>,9701},
 {<<"Rooms">>,3},
 {<<"Area">>,83}]
14> erlang_couchdb:create_document({"127.0.0.1", 5984}, "proto_v1", IDoc).
{json,{struct,[{<<"ok">>,true},
           {<<"id">>,<<"c6d96b5f923f50bfb9263638d4167b1e">>},
           {<<"rev">>,<<"1-0d17a3416d50129328f632fd5cfa1d90">>}]}}
15> erlang_couchdb:create_document({"127.0.0.1", 5984}, "proto_v1", ADoc).
** exception exit: {ucs,{bad_utf8_character_code}}
     in function  xmerl_ucs:from_utf8/1 (xmerl_ucs.erl, line 185)
     in call from mochijson2:json_encode_string/2 (/Users/admin/AlphaGroup/src/mochijson2.erl, line 200)
 in call from mochijson2:'-json_encode_proplist/2-fun-0-'/3 (/Users/admin/AlphaGroup/src/mochijson2.erl, line 181)
 in call from lists:foldl/3 (lists.erl, line 1197)
 in call from mochijson2:json_encode_proplist/2 (/Users/admin/AlphaGroup/src/mochijson2.erl, line 184)
 in call from erlang_couchdb:create_document/3 (/Users/admin/AlphaGroup/src/erlang_couchdb.erl, line 256)

以上两个文档中的一个可以在 couchdb 中毫无问题地创建(IDoc)。

任何人都可以帮助我找出造成它的原因吗?

4

2 回答 2

2

我认为问题在于<<"Brämaregården">>。需要先将 unicode 转换为二进制。示例在以下链接中。

unicode 讨论。核心功能是unicode

于 2012-11-22T22:07:51.570 回答
0

在 Erlang 代码中输入非 ASCII 字符很麻烦,尤其是因为它在 shell 中的工作方式与在已编译的 Erlang 代码中的工作方式不同。

尝试将二进制显式输入为 UTF-8:

<<"Br", 16#c3, 16#a4, "mareg", 16#c3, 16#a5, "rden">>

也就是说,“ä”由 UTF-8 中的字节 C3 A4 表示,“å”由 C3 A5 表示。有很多方法可以找到这些代码;快速搜索出现了这张表

通常你会从你的代码之外的某个地方得到输入,例如从一个文件中读取,输入一个网络表单等,然后你就不会遇到这个问题了。

于 2012-11-23T11:37:13.630 回答