草庐IT

json - 无法处理 golang 结构中的 json 字符串数据

coder 2024-07-13 原文

我有一个字符串形式的 json 数据(来自第三方 API)。我无法在 golang 中解码 json 字符串数据。

请帮忙。

JSON 字符串 =

{
        "data" : {
                 "additional-30":  {
                       "id_sales_rule_set": 255626,
                        "voucher_code": "PR35ZR5J5",
                         "from_date": "2015-06-16 16:19:22",
                         "to_date": "2018-09-28 23:59:59",
                         "conditions_ruleset": {
                             "subTotal": 0,
                              "category": {},
                              "customer": "0",
                              "paymentMethod": null,
                              "capOnDiscount": null,
                              "skuExclude": null,
                              "discountedItem": 0,
                              "discounted": 1500,
                              "taggedItem": null,
                              "segmentedVoucher": null,
                              "bundle": null,
                              "brand": null,
                              "mobileVoucher": null,
                              "itemAttribute": {}
                         },
                        "discount_type": "fixed",
                        "discount_percentage": null,
                        "discount_amount_default": 500
        },
        "abcd":  {
                       "id_sales_rule_set": 255626,
                        "voucher_code": "PR35ZR5J5",
                         "from_date": "2015-06-16 16:19:22",
                         "to_date": "2018-09-28 23:59:59",
                         "conditions_ruleset": {
                             "subTotal": 0,
                              "category": {},
                              "customer": "0",
                              "paymentMethod": null,
                              "capOnDiscount": null,
                              "skuExclude": null,
                              "discountedItem": 0,
                              "discounted": 1500,
                              "taggedItem": null,
                              "segmentedVoucher": null,
                              "bundle": null,
                              "brand": null,
                              "mobileVoucher": null,
                              "itemAttribute": {}
                         },
                        "discount_type": "fixed",
                        "discount_percentage": null,
                        "discount_amount_default": 500
        } 
    }
}

我要获取数据的结构

type ConditionsRuleset struct {
        Brand            interface{} `json:"brand"`
        Bundle           interface{} `json:"bundle"`
        CapOnDiscount    interface{} `json:"capOnDiscount"`
        Category         struct{}    `json:"category"`
        Customer         string      `json:"customer"`
        Discounted       int         `json:"discounted"`
        DiscountedItem   int         `json:"discountedItem"`
        ItemAttribute    struct{}    `json:"itemAttribute"`
        MobileVoucher    interface{} `json:"mobileVoucher"`
        PaymentMethod    interface{} `json:"paymentMethod"`
        SegmentedVoucher interface{} `json:"segmentedVoucher"`
        SkuExclude       interface{} `json:"skuExclude"`
        SubTotal         int         `json:"subTotal"`
        TaggedItem       interface{} `json:"taggedItem"`
    }

type PromoVoucher struct {
    ConditionsRuleset ConditionsRuleset `json:"conditions_ruleset"`
    DiscountAmountDefault int         `json:"discount_amount_default"`
    DiscountPercentage    interface{} `json:"discount_percentage"`
    DiscountType          string      `json:"discount_type"`
    FromDate              string      `json:"from_date"`
    IDSalesRuleSet        int         `json:"id_sales_rule_set"`
    ToDate                string      `json:"to_date"`
    VoucherCode           string      `json:"voucher_code"`
}

type PromoCacheData struct {
    Data map[string]interface{} `json:"data"`
}

这是我要处理json的代码

by := []byte(<json string>)
    tmp := new(PromoCacheData)
    json.Unmarshal(by,tmp)

    for k,value := range *tmp {

        byc, _ := json.Marshal(value)
        tmp2 := new(PromoVoucher)
        json.Unmarshal(byc,tmp2)
        fmt.Println(tmp2)
    }

我得到的错误:cannot range over *tmp (type PromoCacheData)

最佳答案

您需要在 for 循环中使用 tmp.Data 而不是 *tmp
错误消息正是这样说的

关于json - 无法处理 golang 结构中的 json 字符串数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33806321/

有关json - 无法处理 golang 结构中的 json 字符串数据的更多相关文章

  1. ruby - 如何从 ruby​​ 中的字符串运行任意对象方法? - 2

    总的来说,我对ruby​​还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用

  2. Ruby 解析字符串 - 2

    我有一个字符串input="maybe(thisis|thatwas)some((nice|ugly)(day|night)|(strange(weather|time)))"Ruby中解析该字符串的最佳方法是什么?我的意思是脚本应该能够像这样构建句子:maybethisissomeuglynightmaybethatwassomenicenightmaybethiswassomestrangetime等等,你明白了......我应该一个字符一个字符地读取字符串并构建一个带有堆栈的状态机来存储括号值以供以后计算,还是有更好的方法?也许为此目的准备了一个开箱即用的库?

  3. ruby - 其他文件中的 Rake 任务 - 2

    我试图在一个项目中使用rake,如果我把所有东西都放到Rakefile中,它会很大并且很难读取/找到东西,所以我试着将每个命名空间放在lib/rake中它自己的文件中,我添加了这个到我的rake文件的顶部:Dir['#{File.dirname(__FILE__)}/lib/rake/*.rake'].map{|f|requiref}它加载文件没问题,但没有任务。我现在只有一个.rake文件作为测试,名为“servers.rake”,它看起来像这样:namespace:serverdotask:testdoputs"test"endend所以当我运行rakeserver:testid时

  4. ruby-on-rails - 在 Rails 中将文件大小字符串转换为等效千字节 - 2

    我的目标是转换表单输入,例如“100兆字节”或“1GB”,并将其转换为我可以存储在数据库中的文件大小(以千字节为单位)。目前,我有这个:defquota_convert@regex=/([0-9]+)(.*)s/@sizes=%w{kilobytemegabytegigabyte}m=self.quota.match(@regex)if@sizes.include?m[2]eval("self.quota=#{m[1]}.#{m[2]}")endend这有效,但前提是输入是倍数(“gigabytes”,而不是“gigabyte”)并且由于使用了eval看起来疯狂不安全。所以,功能正常,

  5. ruby-on-rails - Ruby net/ldap 模块中的内存泄漏 - 2

    作为我的Rails应用程序的一部分,我编写了一个小导入程序,它从我们的LDAP系统中吸取数据并将其塞入一个用户表中。不幸的是,与LDAP相关的代码在遍历我们的32K用户时泄漏了大量内存,我一直无法弄清楚如何解决这个问题。这个问题似乎在某种程度上与LDAP库有关,因为当我删除对LDAP内容的调用时,内存使用情况会很好地稳定下来。此外,不断增加的对象是Net::BER::BerIdentifiedString和Net::BER::BerIdentifiedArray,它们都是LDAP库的一部分。当我运行导入时,内存使用量最终达到超过1GB的峰值。如果问题存在,我需要找到一些方法来更正我的代

  6. ruby-on-rails - unicode 字符串的长度 - 2

    在我的Rails(2.3,Ruby1.8.7)应用程序中,我需要将字符串截断到一定长度。该字符串是unicode,在控制台中运行测试时,例如'א'.length,我意识到返回了双倍长度。我想要一个与编码无关的长度,以便对unicode字符串或latin1编码字符串进行相同的截断。我已经了解了Ruby的大部分unicode资料,但仍然有些一头雾水。应该如何解决这个问题? 最佳答案 Rails有一个返回多字节字符的mb_chars方法。试试unicode_string.mb_chars.slice(0,50)

  7. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  8. ruby-on-rails - Rails 3 中的多个路由文件 - 2

    Rails2.3可以选择随时使用RouteSet#add_configuration_file添加更多路由。是否可以在Rails3项目中做同样的事情? 最佳答案 在config/application.rb中:config.paths.config.routes在Rails3.2(也可能是Rails3.1)中,使用:config.paths["config/routes"] 关于ruby-on-rails-Rails3中的多个路由文件,我们在StackOverflow上找到一个类似的问题

  9. ruby - 将差异补丁应用于字符串/文件 - 2

    对于具有离线功能的智能手机应用程序,我正在为Xml文件创建单向文本同步。我希望我的服务器将增量/差异(例如GNU差异补丁)发送到目标设备。这是计划:Time=0Server:hasversion_1ofXmlfile(~800kiB)Client:hasversion_1ofXmlfile(~800kiB)Time=1Server:hasversion_1andversion_2ofXmlfile(each~800kiB)computesdeltaoftheseversions(=patch)(~10kiB)sendspatchtoClient(~10kiBtransferred)Cl

  10. ruby - 使用 ruby​​ 将 HTML 转换为纯文本并维护结构/格式 - 2

    我想将html转换为纯文本。不过,我不想只删除标签,我想智能地保留尽可能多的格式。为插入换行符标签,检测段落并格式化它们等。输入非常简单,通常是格式良好的html(不是整个文档,只是一堆内容,通常没有anchor或图像)。我可以将几个正则表达式放在一起,让我达到80%,但我认为可能有一些现有的解决方案更智能。 最佳答案 首先,不要尝试为此使用正则表达式。很有可能你会想出一个脆弱/脆弱的解决方案,它会随着HTML的变化而崩溃,或者很难管理和维护。您可以使用Nokogiri快速解析HTML并提取文本:require'nokogiri'h

随机推荐