English 中文(简体)
网络问题和 Java问题
原标题:web.py and JavaScript problems

我一直在努力制作一个网页,将网页、py和Java文本与以下代码结合起来:

$code: 
     def getContents(fname): 
          a = req.get(fname) 
          return a.content 

<script type="text/javascript"> 
     document.write("$getContents( http://mysite.net )"); 
</script> 

此处req 通过,载于我的模板,$def with()功能,成为 rel=“nofollow”的模块对象。 灰色要求模块,由我执行。

Problem is, the document is blank, which means the document.write function got no input. Is there a way around this? Am I doing this in a wrong way?

www.un.org/Depts/DGACM/index_spanish.htm 职能产出不是空的;如果你使用直言的超文本来印制,那将只是工作。

提前感谢。

(我也将此问题贴在web.py 谷歌集团上,但没有得到答复)。)

最佳回答

你们可以在模版全球中使json encoder,并在你的javascript代码中加以使用。

import json
template_globals = {"json_encode": json.dumps}
render = web.template.render(config.template_dir, globals=template_globals, base="layout")

接着,您的模板

<script>
var obj = $:json_encode({"html": getContents( http://mysite.net )});
document.write(obj.html);
</script>
问题回答

也许你引用了内容,并且使 j字无效。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签