Rhino、e4x 和在 XHTML 中生成 URL

发布于 2024-09-11 10:59:38 字数 1568 浏览 8 评论 0原文

我正在使用 Rhino 生成 XHTML,但我的 url 编码如下:

-http://www.example.com/test.html?a=b&c=d

变为

-http://www.example.com/test.html?a=b&c=d

失败的测试用例如下:

public class E4XUrlTest extends TestCase {
    public void testJavascript() throws Exception {
        final Context context = new ContextFactory().enterContext();
        context.setLanguageVersion(Context.VERSION_1_7);
        try {
            final ScriptableObject scope = new Global(context);
            final Script compiledScript  = context.compileReader(
                    new StringReader("<html><body><a href={'blah.html?id=2345&name=345'}></a></body></html>"), "test", 1, null);
            HashMap<String, Object> variables = new HashMap<String, Object>();
            Set<Entry<String, Object>> entrySet = variables.entrySet();
            for (Entry<String, Object> entry : entrySet) {
                ScriptableObject.putProperty(scope, entry.getKey(), Context.javaToJS(entry.getValue(), scope));
            }
            Object exec = compiledScript.exec(context, scope);
            String html = exec.toString();
            System.out.println(html);
            assertTrue(html.indexOf("id=2345&name") > 0);
        } finally {
            Context.exit();
        }

    }
}

任何想法?

I'm using Rhino to generate XHTML but my urls are being encoded as in:

-http://www.example.com/test.html?a=b&c=d

becomes

-http://www.example.com/test.html?a=b&c=d

Failing test case as follows:

public class E4XUrlTest extends TestCase {
    public void testJavascript() throws Exception {
        final Context context = new ContextFactory().enterContext();
        context.setLanguageVersion(Context.VERSION_1_7);
        try {
            final ScriptableObject scope = new Global(context);
            final Script compiledScript  = context.compileReader(
                    new StringReader("<html><body><a href={'blah.html?id=2345&name=345'}></a></body></html>"), "test", 1, null);
            HashMap<String, Object> variables = new HashMap<String, Object>();
            Set<Entry<String, Object>> entrySet = variables.entrySet();
            for (Entry<String, Object> entry : entrySet) {
                ScriptableObject.putProperty(scope, entry.getKey(), Context.javaToJS(entry.getValue(), scope));
            }
            Object exec = compiledScript.exec(context, scope);
            String html = exec.toString();
            System.out.println(html);
            assertTrue(html.indexOf("id=2345&name") > 0);
        } finally {
            Context.exit();
        }

    }
}

Any ideas?

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

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

发布评论

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

评论(1

高速公鹿 2024-09-18 10:59:38

实际上,xHTML 中的编码“&name”是正确的,因为 &name;不是有效的 xHTML 实体。所有浏览器都能正确理解 URL。因此,您需要修复您的测试,而不是试图破坏正确的 xHTML。
:-) 斯威

Actually the encoding "&name" is correct in xHTML since &name; is NOT a valid xHTML entity. ALL browsers understand the URL correctly. So you need to fix your test rather than looking to break your correct xHTML.
:-) stw

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