简体   繁体   English

从Scrapy逃脱响应以解析json

[英]escape response from Scrapy to parse json

I have a string containing json text. 我有一个包含json文本的字符串。 I converted it to raw string by 我将其转换为原始字符串

json_raw = "%r"%json_all

Then I try to load it 然后我尝试加载它

json_dict = json.loads(json_raw)

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

To debug I did print(json_raw) , and the console output give me: 为了调试,我做了print(json_raw) ,控制台输出给了我:

'{... omitted ...}'

I'm not sure how I got the extra single quote. 我不确定如何获得额外的单引号。 My code looks like this at the moment 我的代码目前看起来像这样

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

I checked with https://jsonformatter.curiousconcept.com 我检查了https://jsonformatter.curiousconcept.com

Seems my string has not been escaped correctly with Scrapy. 似乎我的字符串没有被Scrapy正确地转义。

Checking using Scrapy Shell 使用Scrapy Shell检查

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

View json_respnse 查看json_respnse

The way it is escaped with Scrapy destroyed the original correct format of json. 使用Scrapy进行转义的方式破坏了json的原始正确格式。 If I copy paste the json for the original html there was no error. 如果我复制粘贴原始html的json,则没有错误。

I removed the part seems causing trouble. 我卸下的零件似乎引起麻烦。

    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)

Now I can load it. 现在可以加载它。

You should not enclose your string in quote, as in the line below. 您不应将字符串用引号引起来,如以下行所示。

json_raw = "%r"%json_all

the error show means that the first character is invalid, identified by a quote character. 错误显示表示第一个字符无效,由引号字符标识。 For json, the first character stars with either { or [ 对于json,第一个字符以{或[

Use jsonformatter.curiousconcept.com to check your json and follow the report. 使用jsonformatter.curiousconcept.com检查您的json并遵循报告。

You should correctly escape " as you are using " to wrap keys and values. 您应该正确地转义"因为您正在使用"来包装键和值。

corrected json should be : 更正的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"}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM