【发布时间】:2019-04-30 12:10:30
【问题描述】:
我正在尝试将项目部署到 App Engine,但如果我在 app.yaml 中使用“ü”字符作为值,则会收到以下错误。我不想对值进行 HTML/URL 编码。有什么办法可以解决这个问题吗?
ERROR: (gcloud.app.deploy) An error occurred while parsing file: [app.yaml]
Unable to assign value '<unknown>' to attribute 'XXX':
Value u'\xfc' for XXX could not be converted to type str.
app.yaml 文件:
runtime: php72
env: standard
env_variables:
XXX: "ü"
【问题讨论】: