2017-10-20 224 views
0

我有一個包含json文本的字符串。 我把它轉換成原始字符串由Scrapy轉義解析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) 

現在我可以加載它。

+0

你有一個無效的JSON。選中「https://jsonformatter.curiousconcept.com/」。你的JSON也會在http://json.bloople.net中給出錯誤。語法錯誤在你的JSON。錯誤是在「筆記」鍵值中。 –

回答

0

您不應該在引用中包含您的字符串,如下面一行所示。

json_raw = "%r"%json_all 

錯誤顯示錶示第一個字符無效,由引用字符標識。對於json,第一個字符帶有{或[

0

使用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"}