<script src="jquery.min.js"></script>
<script src="jquery.json-2.2.js"></script>
<script src="GetPostAjax.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#form").submit(function(e){
e.preventDefault();
var username,email,password,gender;
username=$("#username").val();
email=$("#email").val();
password=$("#username").val();
gender=$("#gender").val();
if(username.length>0 && email.length>0 && password.length>0 &&gender.length>0)
{
//Creating Objects
var request = new Object();
var userDetails = new Object();
var user = new Object();
var websites=new Array();
user.name=username;
user.email=email;
user.password=password;
user.gender=gender;
//Array Push
if(website1.length>0)
websites.push(website1);
if(website2.length>0)
websites.push(website2);
if(website3.length>0)
websites.push(website3);
user.websites=websites;
userDetails.user = user;
request.userDetails = userDetails;
var jsonfy = $.toJSON(request);
// Encodes special characters
var encodedata = "jsondata="+encodeURIComponent(jsonfy);
//Ajax Call
var url="website API URL";
post_data(url,encodedata, function(data) {
alert("Success");
});
}
});
});
</script">
<form method="post" action="" id="form">
Name
<input type="text" name="username" id="username" />
Email
<input type="text" name="email" id="email" />
Password
<input type="text" name="password" id="password" />
Gender
<select name="gender" id="gender"><option value="male">Male</option><option value="female">Female</option></select>
Websites
<input type="text" id="website1" />
<input type="text" id="website2" />
<input type="text" id="website3" />
<input type="submit" id="submit"/>
</form>
{
"userDetails":{
"user":{
"name":"Srinivas Tamada",
"email":"srinivas@9lessons.info",
"password":"Srinivas Tamada",
"gender":"male",
"websites":["www.software8.co","www.heatpress123.net","www.0769zzw.com"]
}
}
}
, / ? : @ & = + $ #
jsondata=%7B%22userDetails%22%3A%7B%22user%22%3A%7B%22name%22%3A%22Srinivas%20Tamada%22%2C%22email%22%3A%22srinivas%409lessons.info%22%2C%22password%22%3A%22Srinivas%20Tamada%22%2C%22gender%22%3A%22male%22%2C%22websites%22%3A%5B%22www.9lessons.info%22%2C%22www.egglabs.in%22%2C%22www.fglogin.com%22%5D%7D%7D%7D
function post_data(url,encodedata, success){
$.ajax({
type:"POST",
url:url,
data :encodedata,
dataType:"json",
restful:true,
contentType: "application/json",
cache:false,
timeout:20000,
async:true,
beforeSend :function(data) { },
success:function(data){
success.call(this, data);
},
error:function(data){
alert("Error In Connecting");
}
});
}
// 声明两个json数组
[java] view plain copy print?
JSONArray gResTable = new JSONArray();
JSONArray gCmtTable = new JSONArray();
// 声明json对象
ONObject outData = new JSONObject();
//把json数组加到json对象中
[java] view plain copy print?
outData.put("ResTable", gResTable);
outData.put("CmtTable", gCmtTable);
//此时创建出来的如下:jsonData={"ResTable":[],"CmtTable":[]};
把json数据加到json数组中
for (int i = 0; i < 2; i ++)
{
JSONObject node = new JSONObject();
node.put("thumb_path", "./Image/" + i +".gif");
node.put("flash_path", "./Image/" + i +".gif");
node.put("desc1", "可疑车辆" + i);
node.put("desc2", "");
node.put("desc3", "");
node.put("desc4", "");
node.put("title", "hello");
node.put("upload_time", (new java.util.Date()).toString());
node.put("uploader", "王二");
gResTable.put(node);
}
for (int i = 0; i < 2; i ++)
{
JSONObject node = new JSONObject();
node.put("logo_path", "./Image/" + i +".gif");
node.put("comment", "hello");
node.put("comment_time", (new java.util.Date()).toString());
node.put("author", "王二");
gCmtTable.put(node);
}
建出来的json格式如下: [java] view plain copy print?
Frame/IFrame src 属性 Frame/IFrame 对象定义和用法src 属性可设置或者返回 frame/iframe 元素中 src 属性的值。src 属性指定了...
描述@error指令将SassScript表达式值显示为致命错误。例子下面是使用扩展名 .scss 保存的样式表文件,它类似于css文件。warn.scs...
描述@for指令使用关键字,通过它指定范围,包括start和end的值。语句@for $var from start through end下面简要解释语法。$var: ...
在本章中,我们将学习关于编辑器和插件。 编辑器是允许用户编辑文本的系统或程序。 插件是一种软件,用于扩展网站的功能。让我们...
CSS3中包含几个新的文本特征。在本节中您将了解以下文本属性:text-shadowbox-shadowtext-overflowword-wrapword-break浏览器支...