aardio 官方社区

 找回密码
 注册会员

QQ登录

只需一步,快速开始

搜索
楼主: JacenHe

使用 web.kit 开发桌面软件

  [复制链接]

168

主题

2163

回帖

1万

积分

管理员

积分
13126
 楼主| 发表于 2017-12-29 02:11:26 | 显示全部楼层
import win.ui;
/*DSG{{*/
var winform = win.form(text="webkit上传文件示例")
/*}}*/

import web.kit.form;  
var wb = web.kit.form(winform);  

import inet.http;
import web.multipartFormData;
import fsys.dlg;
wb.external = {

    upload =
function(userAgent,proc){
        
var postSize,contentLength = 0;
        
var filePath  = fsys.dlg.open(,"选择要上传的文件");
        
if(!filePath) return;
        
        
var form = web.multipartFormData();
        form.add(
"username","用户名");
        form.add(
"password","密码");
        form.addFile(
"filename",filePath);
        
        
//使用webkit的userAgent,假装是webkit客户端
        var http = inet.http(userAgent);
        http.disableCookies();
//禁用默认的cookie
        http.disableCache(); //强制刷新
        http.addHeaders ={
            cookie = wb.cookie;
//添加浏览器的cookie
        }
        
        http.onSendBegin =
function(){
            contentLength = form.size();
            
return contentLength;
        }
        http.onSend =
function(remainSize){
            
var str = form.read(0x2000);
            
if(!#str)return;
            postSize = postSize + #str;
            proc( contentLength,postSize,remainSize-#str );
            win.delay(10)
            
return str;
        }
        
var json = http.post("http://eu.httpbin.org/post",,{ ["Content-Type"] = form.contentType() }  );

        wb.document.write(
"<pre>"+json+"</pre>")
    };
}
wb.html =
/**
<!doctype html>
<html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
</head>
<body>
    <a href='javascript:external.upload(navigator.userAgent,
        function(contentLength,postSize,remainSize){
            document.write( "<br>总大小:" + contentLength +" 已上传:" + postSize + " 剩余:" + remainSize);
        });'>上传</a>
</body>
</html>
**/


winform.show();
win.loopMessage();
   
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

手机版|未经许可严禁引用或转载本站文章|aardio.com|aardio 官方社区 ( 皖ICP备09012014号 )

GMT+8, 2024-12-5 14:24 , Processed in 0.066041 second(s), 20 queries .

Powered by Discuz! X3.5

Copyright © 2001-2024 Tencent Cloud.

快速回复 返回顶部 返回列表