实施pFileUpload
时,我得到所有3个按钮,但我不需要取消按钮。
根据文档,有一个属性showCancelButton
但是当我申请时没有变化。
<p-fileUpload name="demo[]" url="" mode="advanced" accept=".xml"
maxFileSize="1000000" chooseLabel="Select File..." uploadLabel="Upload File"
showCancelButton="false" >
</p-fileUpload>
答案 0 :(得分:1)
只需将showCancelButton="false"
替换为[showCancelButton]="false"
。
修改强>
<{3}}中未提供 showCancelButton
,您应升级到至少2.0.6
如果无法升级,请尝试以下操作:
::ng-deep .ui-fileupload-buttonbar button:nth-child(3) {
display:none;
}