我有一个输出变量的 cloudformation 模板。输出变量之一是
ApiGKeyId:
Description: "Api Key Id"
Value: !Ref ApplicationApiGatewayApiKey
Run Code Online (Sandbox Code Playgroud)
这将返回 API 网关密钥的 Id 而不是实际值。有没有办法获得价值?
<div class="form-group">
<label for="fileName">Name</label>
<input type="file" class="form-control" id="fileName" placeholder="Upload file" accept=".xlsx, .xls"
required
[(ngModel)]="model.fileName" name="fileName"
#fileName="ngModel">
<div [hidden]="fileName.valid || fileName.pristine" class="alert alert-danger">
File to be uploaded is required
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
使用angularjs2表单,我正在尝试上传文件并提交表单.即使我选择文件,控件也无法识别所选值.