ProtoModule
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
通訊協定訊息處理的模組。
成員
encode_text
string ProtoModule.encode_text(x)
傳回結構引數的編碼,格式為文字格式通訊協定訊息。
資料結構必須以遞迴方式由字串、整數、浮點數或布林值組成,或是這些類型的結構體、序列和字典。
結構體會轉換為訊息。系統會按照名稱順序發出欄位。
序列 (例如清單或元組) 會轉換為重複欄位。
其中的元素不得為序列或字典。
系統會將字典轉換為訊息的重複欄位,欄位中名稱為「key」「value」和「value」。
報名資料會按照疊代 (插入) 順序發出。
字典的鍵必須是字串、 int 或 bools,而且其值不可以是序列或字典。
範例:
struct(field=123).to_proto()
# field: 123
struct(field=True).to_proto()
# field: true
struct(field=[1, 2, 3]).to_proto()
# field: 1
# field: 2
# field: 3
struct(field='text').to_proto()
# field: "text"
struct(field=struct(inner_field='text')).to_proto()
# field {
# inner_field: "text"
# }
struct(field=[struct(inner_field=1), struct(inner_field=2)]).to_proto()
# field {
# inner_field: 1
# }
# field {
# inner_field: 2
# }
struct(field=struct(inner_field=struct(inner_inner_field='text'))).to_proto()
# field {
# inner_field {
# inner_inner_field: "text"
# }
# }
struct(foo={4: 3, 2: 1}).to_proto()
# foo: {
# key: 4
# value: 3
# }
# foo: {
# key: 2
# value: 1
# }
參數
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-08-23 (世界標準時間)。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"缺少我需要的資訊"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"過於複雜/步驟過多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"過時"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻譯問題"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/程式碼問題"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"容易理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"確實解決了我的問題"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
{"lastModified": "\u4e0a\u6b21\u66f4\u65b0\u6642\u9593\uff1a2024-08-23 (\u4e16\u754c\u6a19\u6e96\u6642\u9593)\u3002"}
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-08-23 (世界標準時間)。"],[],[]]