Updated
This commit is contained in:
158
master/examples/iframe.html
Normal file
158
master/examples/iframe.html
Normal file
@@ -0,0 +1,158 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Testing dojo.io.iframe</title>
|
||||
<style type="text/css">
|
||||
@import "../../resources/dojo.css";
|
||||
</style>
|
||||
<script type="text/javascript" src="../../dojo.js" data-dojo-config="isDebug:true"></script>
|
||||
<script type="text/javascript">
|
||||
require(["dojo", "doh", "dojo/io/iframe"], function(dojo, doh){
|
||||
doh.register([
|
||||
function ioIframeGetText(t){
|
||||
var d = new doh.Deferred();
|
||||
var td = dojo.io.iframe.send({
|
||||
url: "iframeResponse.text.html",
|
||||
method: "GET",
|
||||
timeoutSeconds: 5,
|
||||
preventCache: true,
|
||||
handle: function(res, ioArgs){
|
||||
if(!(res instanceof Error) &&
|
||||
t.is("iframe succeeded", res)){
|
||||
d.callback(true);
|
||||
}else{
|
||||
d.errback(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
return d;
|
||||
},
|
||||
|
||||
function ioIframeGetJson(t){
|
||||
var d = new doh.Deferred();
|
||||
var td = dojo.io.iframe.send({
|
||||
url: "iframeResponse.json.html",
|
||||
method: "GET",
|
||||
timeoutSeconds: 5,
|
||||
preventCache: true,
|
||||
handleAs: "json",
|
||||
handle: function(res, ioArgs){
|
||||
if(!(res instanceof Error) &&
|
||||
t.is("blue", res.color)){
|
||||
d.callback(true);
|
||||
}else{
|
||||
d.errback(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
return d;
|
||||
},
|
||||
|
||||
function ioIframeGetJavascript(t){
|
||||
var d = new doh.Deferred();
|
||||
var td = dojo.io.iframe.send({
|
||||
url: "iframeResponse.js.html",
|
||||
method: "GET",
|
||||
timeoutSeconds: 5,
|
||||
preventCache: true,
|
||||
handleAs: "javascript",
|
||||
handle: function(res, ioArgs){
|
||||
console.log("RES: ", res);
|
||||
if(!(res instanceof Error) &&
|
||||
t.is(42, window.iframeTestingFunction())){
|
||||
d.callback(true);
|
||||
}else{
|
||||
d.errback(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
return d;
|
||||
},
|
||||
|
||||
function ioIframeGetHtml(t){
|
||||
var d = new doh.Deferred();
|
||||
var td = dojo.io.iframe.send({
|
||||
url: "iframeResponse.html",
|
||||
method: "GET",
|
||||
timeoutSeconds: 5,
|
||||
preventCache: true,
|
||||
handleAs: "html",
|
||||
handle: function(res, ioArgs){
|
||||
if(!(res instanceof Error) &&
|
||||
t.is("SUCCESSFUL HTML response", res.getElementsByTagName("h1")[0].innerHTML)){
|
||||
d.callback(true);
|
||||
}else{
|
||||
d.errback(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
return d;
|
||||
},
|
||||
|
||||
function ioIframeGetXml(t){
|
||||
var d = new doh.Deferred();
|
||||
var td = dojo.io.iframe.send({
|
||||
url: "iframeResponse.xml",
|
||||
method: "GET",
|
||||
timeoutSeconds: 5,
|
||||
preventCache: true,
|
||||
handleAs: "xml",
|
||||
handle: function(res, ioArgs){
|
||||
if(!(res instanceof Error)
|
||||
&& t.is(4, res.documentElement.getElementsByTagName("child").length)
|
||||
){
|
||||
d.callback(true);
|
||||
} else {
|
||||
d.errback(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
return d;
|
||||
},
|
||||
function ioIframeContentArray(t){
|
||||
//Tests if an array passed in content causes as an error on cleanup.
|
||||
var d = new doh.Deferred();
|
||||
var td = dojo.io.iframe.send({
|
||||
url: "iframeResponse.text.html",
|
||||
form: "contentArrayTest",
|
||||
content: {"tag": ["value1","value2"]},
|
||||
handle: function(res, ioArgs){
|
||||
if(!(res instanceof Error)){
|
||||
d.callback(true);
|
||||
} else {
|
||||
d.errback(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
return d;
|
||||
}
|
||||
]);
|
||||
doh.runOnLoad();
|
||||
/*
|
||||
// for watching in the debugger...
|
||||
dojo.addOnLoad(function(){
|
||||
var td = dojo.io.iframe.get({
|
||||
url: "iframeResponse.text.html",
|
||||
timeoutSeconds: 5,
|
||||
preventCache: true,
|
||||
handle: function(res, ioArgs){
|
||||
if(!(res instanceof Error) &&
|
||||
"iframe succeeded" == res){
|
||||
console.debug("OK");
|
||||
}else{
|
||||
console.debug("Error", res);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
*/
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form id="contentArrayTest" method="get" enctype="multipart/form-data">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user