JavaScript 中的 %(jscode)s 是什么意思?

发布于 2024-10-14 23:25:27 字数 340 浏览 3 评论 0原文

我在任何 javascript 文档中都能找到 % 的唯一用途是模除法。我不明白这行代码的作用:

%(jscode)s

来源是第 13 行:

https://code.google.com/apis/visualization/documentation/dev/gviz_api_lib.html#exampleusage

The only use I can find for % in any javascript documentation is modulo division. I don't understand what this line of code does:

%(jscode)s

Source is line 13 of this:

https://code.google.com/apis/visualization/documentation/dev/gviz_api_lib.html#exampleusage

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如歌彻婉言 2024-10-21 23:25:27

这实际上并不是 Javascript,而是 Python 字符串格式化

您链接的文件是一个 Python 文件,在执行时,会在将其发送到浏览器之前将附加的 Javascript 代码插入其中。 %(jscode)s 只是充当该动态代码的插入点。您可以在第 18 行看到另一个插入点 - %(json)s,在第 46 行看到 jscode 的定义,以及在第 56 行看到实际的格式/插值。

That isn't actually Javascript, it's Python string formatting.

The file you link is a Python file and, when it's executed, additional Javascript code is inserted into it before it's sent to the browser. %(jscode)s simply acts as the insertion point for that dynamic code. You can see another insertion point — %(json)s — on line 18, the definition of jscode on line 46, and the actual formatting / interpolation on line 56.

请叫√我孤独 2024-10-21 23:25:27

它不是 javascript,而是 python 脚本中的 python 替代品。

It's not javascript, that's a python replacement in the python script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文