使用getJSON时如何将变量用作JSON文件名

时间:2019-06-04 20:24:37

标签: javascript html json variables getjson

我正在尝试开发一种简单的方法来使用javascript将.json文件转换为HTML表。

我尝试使用文件上载输入,文本输入,html形式,以及将数据从一个.json文件附加到另一个空容器.json文件。我要修复的主要内容位于第3、5和17行。

我想发生的是用户通过文本字段输入.json文件的名称(或只是上传文件),程序将其转换为html表,但是我不知道如何使用变量来实现。

public class MyWicketApplication extends WebApplication {
    @Override
    public Class<? extends WebPage> getHomePage() {
        return HomePage.class;
    }

    @Override
    public void init() {
        super.init();

        // Get the SpringContext from the servletContext
        WebApplicationContext springContext = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
        getComponentInstantiationListeners().add(new SpringComponentInjector(this, springContext));

        // Mount your pages
        mountPage("/test", TestPage.class);
    }
}

0 个答案:

没有答案