我想创建一个 VPC 连接器来将 App 引擎连接到云 SQL 实例。由于连接器应与 SQL 实例位于同一区域,因此我选择了同一区域。但创建 VPC 连接器后出现错误:
Unknown error. Original error message: Operation failed: Insufficient CPU quota in region.
我告诉您,我正在使用免费的 Tier GCP 帐户。这个问题是出在我这边吗?与我的帐户有关?怎么解决呢。谢谢!
google-app-engine quota google-cloud-sql google-compute-engine google-cloud-platform
const cheerio = require('cheerio');
const HTML = `<tbody>
<tr>
<th>
Team Name
</th>
<th>
Year
</th>
<th>
Wins
</th>
<th>
Losses
</th>
</tr>
</tbody>
`;
const $ = cheerio.load(HTML);
const text = $('tr').text();
console.log(text);
Run Code Online (Sandbox Code Playgroud)
在这里我没有收到文本。为什么??HTML 字符串中是否有任何错误?我无法确定问题。请帮忙!!!