PhantomJS uploadFile()

PhantomJS uploadFile()

此方法用于处理html表单中的文件上传。PhantomJS没有直接的方法来使用表单进行文件上传,但可以使用uploadFile方法来实现。它接受文件位置的html标签选择器和要复制到的目标位置。

语法

其语法如下所示:

var wpage = require('webpage').create(); 
wpage.uploadFile('input[name = image]', 'path to copy file');

示例

以下示例演示了使用 uploadFile() 方法。

var wpage = require('webpage').create();  
wpage.open("http://localhost/tasks/file.html", function(status) { 
   console.log(status); 
   wpage.uploadFile('input[name = fileToUpload]', 'output.png');  
   wpage.render("result.png"); 
});

file.html

<html> 
   <head>
      <title>Window 2</title>
   </head> 

   <body> 
      <form action = "upload.php" method = "post" enctype = "multipart/form-data" id = "form1">  
         <input type = "file" name = "fileToUpload" id = "fileToUpload"> 
         <input type = "submit" value = "Upload Image" name = "submit"> 
      </form> 
   </body>

</html>

上面的程序生成了以下 输出

PhantomJS uploadFile()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程