从Scrapy转义响应以解析json

2024-06-16 19:19:03 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个包含json文本的字符串。 我把它转换成原始字符串

json_raw = "%r"%json_all

然后我试着加载它

json_dict = json.loads(json_raw)

给我错误JSONDecodeError: Expecting value: line 1 column 1 (char 0)

为了调试,我做了print(json_raw),控制台输出给我:

'{... omitted ...}'

我不知道我是怎么得到额外的单引号的。我的代码现在看起来像这样

json_all = "{"+json2+"}"
json_raw = "%r"%json_all
json_dict = json.loads(json_raw)

我查过https://jsonformatter.curiousconcept.com

好像我的线没有正确地用Scrapy转义。你知道吗

使用Scrapy Shell检查

scrapy shell "https://www.alibabacloud.com/pricing"
json_response = response.xpath('//*[@id="floor1"]/textarea').extract()

视图json_respnse

用Scrapy转义的方式破坏了json的原始正确格式。如果我复制粘贴original html的json,则没有错误。你知道吗

我把零件拆了,好像惹麻烦了。你知道吗

    d_str = '* Each package includes an outbound Data Transfer plan. Any outbound data transfers in excess of your plan\'s Data Transfer allowance are subject to overage charges. <a href="https://www.alibabacloud.com/starter-packages/general" class=\'\\"show-intl\\"\'>Learn more</a><br>*'
    json_new = json_response[0].replace(d_str,'',1)

    # split on the first character and take the last element of the result
    json1=json_new.split("{",1)[-1]
    json2=json1.rsplit("}",1)[0]
    json_all = '{'+json2+'}'
    json_dict = json.loads(json_all)

现在我可以装了。你知道吗


Tags: the字符串httpscomjsonrawresponsewww
2条回答

你不应该把你的字符串括在引号里,如下一行。你知道吗

json_raw = "%r"%json_all

错误显示意味着第一个字符无效,由引号字符标识。对于json,第一个字符以{或[

使用jsonformatter.curiousconcept.com检查json并跟踪报告。你知道吗

在使用"包装键和值时,应该正确地转义"。你知道吗

更正后的json应为:

{"moduleinfo":{"note":"* Each package includes an outbound Data Transfer plan. Any outbound data transfers in excess of your plan's Data Transfer allowance are subject to overage charges. <a href=\"https://www.alibabacloud.com/starter-packages/general\" class='\"show-intl\"'>Learn more</a><br>* The pricing above applies to both newly launched instances and renewals.","plans_count":[{"count_phone":1,"count":1}],"os_count":[{"count_phone":1,"count":1}],"products_count":[{"count_phone":30,"count":30}],"floor":"floor1","bigTitle":"Simple and Transparent Pricing","regions_count":[{"count_phone":1,"count":1}]},"regions":[{"title":"Regions:","list":[{"nation":"Worldwide","tce_rule_count":"1","text":"Worldwide: Singapore, Sydney, Frankfurt, Virginia, Silicon Valley"},{"nation":"Hong Kong","tce_rule_count":"1"},{"nation":"Mainland China","tce_rule_count":"1","text":"Mainland China: Beijing, Hangzhou, Shanghai, Shenzhen, Qingdao, Zhangjiakou"}]}],"os":[{"title":"Operating System:","list":[{"tce_rule_count":"1","text":"Linux"},{"tce_rule_count":"1","text":"Windows"}]}],"products":[{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","regions":"Worldwide","os":"Linux","btntxt":"Get Started","price":"<span>$<b>4.50</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>1TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","regions":"Worldwide","os":"Linux","btntxt":"Get Started","price":"<span>$<b>10</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>2TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","regions":"Worldwide","os":"Linux","btntxt":"Get Started","price":"<span>$<b>19</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>2GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>3TB</b> Data Transfer"}],"isActive":"true"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","regions":"Worldwide","os":"Linux","btntxt":"Get Started","price":"<span>$<b>39</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>4GB</b> Memory"},{"tce_rule_count":"1","text":"<b>60GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>4TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","regions":"Worldwide","os":"Linux","btntxt":"Get Started","price":"<span>$<b>79</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>8GB</b> Memory"},{"tce_rule_count":"1","text":"<b>80GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>5TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzEifSB9","regions":"Hong Kong","os":"Linux","btntxt":"Get Started","price":"<span>$<b>9</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzEifSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>1TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzIiIH19","regions":"Hong Kong","os":"Linux","btntxt":"Get Started","price":"<span>$<b>19</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzIiIH19","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>2TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzMiIH19","regions":"Hong Kong","os":"Linux","btntxt":"Get Started","price":"<span>$<b>39</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzMiIH19","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>2GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>3TB</b> Data Transfer"}],"isActive":"true"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzQiIH19","regions":"Hong Kong","os":"Linux","btntxt":"Get Started","price":"<span>$<b>79</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzQiIH19","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>4GB</b> Memory"},{"tce_rule_count":"1","text":"<b>60GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>4TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzUiIH19","regions":"Hong Kong","os":"Linux","btntxt":"Get Started","price":"<span>$<b>109</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzUiIH19","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>8GB</b> Memory"},{"tce_rule_count":"1","text":"<b>80GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>5TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","regions":"Mainland China","os":"Linux","btntxt":"Get Started","price":"<span>$<b>19</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>1TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","regions":"Mainland China","os":"Linux","btntxt":"Get Started","price":"<span>$<b>29</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>2TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","regions":"Mainland China","os":"Linux","btntxt":"Get Started","price":"<span>$<b>49</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>2GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>3TB</b> Data Transfer"}],"isActive":"true"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","regions":"Mainland China","os":"Linux","btntxt":"Get Started","price":"<span>$<b>89</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>4GB</b> Memory"},{"tce_rule_count":"1","text":"<b>60GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>4TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","regions":"Mainland China","os":"Linux","btntxt":"Get Started","price":"<span>$<b>119</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>8GB</b> Memory"},{"tce_rule_count":"1","text":"<b>80GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>5TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","regions":"Worldwide","os":"Windows","btntxt":"Get Started","price":"<span>$<b>9</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>1TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","regions":"Worldwide","os":"Windows","btntxt":"Get Started","price":"<span>$<b>19</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>2TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","regions":"Worldwide","os":"Windows","btntxt":"Get Started","price":"<span>$<b>29</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>2GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>3TB</b> Data Transfer"}],"isActive":"true"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","regions":"Worldwide","os":"Windows","btntxt":"Get Started","price":"<span>$<b>59</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>4GB</b> Memory"},{"tce_rule_count":"1","text":"<b>60GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>4TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","regions":"Worldwide","os":"Windows","btntxt":"Get Started","price":"<span>$<b>99</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImFwLXNvdXRoZWFzdC1vczMwLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>8GB</b> Memory"},{"tce_rule_count":"1","text":"<b>80GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>5TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzEifSB9","regions":"Hong Kong","os":"Windows","btntxt":"Get Started","price":"<span>$<b>19</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzEifSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>1TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzIiIH19","regions":"Hong Kong","os":"Windows","btntxt":"Get Started","price":"<span>$<b>29</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzIiIH19","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>2TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzMiIH19","regions":"Hong Kong","os":"Windows","btntxt":"Get Started","price":"<span>$<b>49</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzMiIH19","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>2GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>3TB</b> Data Transfer"}],"isActive":"true"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzQiIH19","regions":"Hong Kong","os":"Windows","btntxt":"Get Started","price":"<span>$<b>89</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzQiIH19","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>4GB</b> Memory"},{"tce_rule_count":"1","text":"<b>60GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>4TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzUiIH19","regions":"Hong Kong","os":"Windows","btntxt":"Get Started","price":"<span>$<b>119</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhvbmdrb25nLWFtNC1jMDQiLCJwbGFuSWQiOiJwbGFuXzUiIH19","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>8GB</b> Memory"},{"tce_rule_count":"1","text":"<b>80GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>5TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","regions":"Mainland China","os":"Windows","btntxt":"Get Started","price":"<span>$<b>19</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>1TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","regions":"Mainland China","os":"Windows","btntxt":"Get Started","price":"<span>$<b>29</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMiIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>1GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>2TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","regions":"Mainland China","os":"Windows","btntxt":"Get Started","price":"<span>$<b>49</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fMyIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>1 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>2GB</b> Memory"},{"tce_rule_count":"1","text":"<b>40GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>3TB</b> Data Transfer"}],"isActive":"true"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","regions":"Mainland China","os":"Windows","btntxt":"Get Started","price":"<span>$<b>89</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNCIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>4GB</b> Memory"},{"tce_rule_count":"1","text":"<b>60GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>4TB</b> Data Transfer"}],"isActive":"false"},{"btnlink":"https://ecs-buy-intl.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","regions":"Mainland China","os":"Windows","btntxt":"Get Started","price":"<span>$<b>119</b> USD</span>/month","btnlinkForReseller":"https://ecs-buy-intl4service.aliyun.com/simple?data=eyJjb21wb25lbnRzIjp7InZtX3JlZ2lvbl9ubyI6ImNuLWhhbmd6aG91LWRnLWEwMSIsInBsYW5JZCI6InBsYW5fNSIgfSB9","confs":[{"tce_rule_count":"1","text":"<b>2 Core</b> CPU"},{"tce_rule_count":"1","text":"<b>8GB</b> Memory"},{"tce_rule_count":"1","text":"<b>80GB</b> SSD Cloud Disk"},{"tce_rule_count":"1","text":"<b>5TB</b> Data Transfer"}],"isActive":"false"}],"plans":[{"title":"Included in All Plans","list":[{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"99.95% ECS uptime SLA"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"Free snapshot"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"Solid-state drives"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"Powerful infrastructure, tier 3+ datacenters"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"3-copy data backup data durability of 99.9999999%"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"Static IP address"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"Simple accessible management console"},{"tce_rule_count":"1","icon":"//img.alicdn.com/tfs/TB1vyrrSpXXXXcBaXXXXXXXXXXX-36-28.png","text":"Access to 30+ Alibaba Cloud Services"}],"isShow":"false"}],"countinfo":{"regions":{"length_pc":0,"length":0},"os":{"length_pc":0,"length":0},"plans":{"length_pc":0,"length":0},"products":{"length_pc":0,"length":0}},"$tmsId":"tce/965280"}

相关问题 更多 >