使用 Oracle JET 上传文件
File Upload with Oracle JET
我正在使用 Oracle JET,我想为我的网络应用程序添加文件上传功能。我如何使用 Oracle JET 做到这一点?
截至今天,JET 中没有文件上传组件。您可以使用 HTML5 文件 API 来执行此操作。
您可以找到有关文件的更多信息 API here
没有用于文件上传的 JET component/utility,为此您可以像这样实现上传文件的常规方法:
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
<input type="file" name="pic" accept="image/*">
<input type="submit">
</form>
<p><strong>Note:</strong> The accept attribute of the input tag is not supported in Internet Explorer 9 (and earlier versions), and Safari 5 (and earlier).</p>
<p><strong>Note:</strong> Because of security issues, this example will not allow you to upload files.</p>
</body>
</html>
您可以使用来自 Oracle JET 的 oj-file-picker 标签,要使用此标签您需要包含组件 ojs/ojfilepicker.
参考:http://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=progressList&demo=basic
文件选择器组件在 Oracle JET 3.2 版中被引入为:
<oj-file-picker class="oj-filepicker-custom"
selectOn="click"
on-select="{{selectListener}}">
查看 Oracle JET 说明书以获取有关使用它的详细示例。
http://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=filePicker&demo=basic
我正在使用 Oracle JET,我想为我的网络应用程序添加文件上传功能。我如何使用 Oracle JET 做到这一点?
截至今天,JET 中没有文件上传组件。您可以使用 HTML5 文件 API 来执行此操作。
您可以找到有关文件的更多信息 API here
没有用于文件上传的 JET component/utility,为此您可以像这样实现上传文件的常规方法:
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
<input type="file" name="pic" accept="image/*">
<input type="submit">
</form>
<p><strong>Note:</strong> The accept attribute of the input tag is not supported in Internet Explorer 9 (and earlier versions), and Safari 5 (and earlier).</p>
<p><strong>Note:</strong> Because of security issues, this example will not allow you to upload files.</p>
</body>
</html>
您可以使用来自 Oracle JET 的 oj-file-picker 标签,要使用此标签您需要包含组件 ojs/ojfilepicker.
参考:http://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=progressList&demo=basic
文件选择器组件在 Oracle JET 3.2 版中被引入为:
<oj-file-picker class="oj-filepicker-custom"
selectOn="click"
on-select="{{selectListener}}">
查看 Oracle JET 说明书以获取有关使用它的详细示例。 http://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=filePicker&demo=basic