Skip to content

hont127/easyFormData.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

easyFormData.js

一个简单的库,解决用uHttpSharp做服务端导致的FormData boundard warp问题。

A simple library, solved uHttpSharp cause FormData boundard warp problems.

Example:

var data=new EasyFormData();
data.append("name", name);
data.append("pw", pw);

xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
	//do something...
}
xmlhttp.open("POST",url,true);
xmlhttp.send(data);

About

Replaced 'FormData', and no boundary.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published