无法使用ajax加载方法加载文件

时间:2018-04-19 18:33:12

标签: javascript jquery ajax

new Theme(
        data: Theme.of(context).copyWith(
          canvasColor: Colors.black,
          splashColor: Colors.yellowAccent,
            unselectedWidgetColor: Colors.green,
          primaryColor: Colors.red,
          textTheme: Theme.of(context).textTheme.copyWith(caption: new TextStyle(color: Colors.grey))
        ),
        child: new BottomNavigationBar(
          items: <BottomNavigationBarItem>[
            new BottomNavigationBarItem(
                icon: const Icon(Icons.add_shopping_cart, color: Colors.white,),
                title: new Text("Services"),
            ),
            new BottomNavigationBarItem(
                icon: new Theme(
                  data: new ThemeData(

                  ),
                    child: const Icon(Icons.calendar_today, color: Colors.white,)),
                title: new Text("Appointment")
            ),
            new BottomNavigationBarItem(
                icon: const Icon(Icons.face, color: Colors.white,),
                title: new Text("Profile")
            )
          ],
          currentIndex: index,
          onTap: (int i){setState((){index = i;});},
          fixedColor: Colors.yellowAccent,
          type: BottomNavigationBarType.fixed,
        ),
      )

我收到提醒,但我无法在“#testdiv”中看到任何内容。文件,sometext.txt在同一个文件夹中。我尝试给它绝对路径,但我得到404,网址上找不到网址服务器。 我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

Windows有几个&#34;功能&#34;旨在使其操作系统对大多数人更有用。隐藏文件扩展名是其中一个&#34;功能&#34;这往往比他们的帮助更有害。

虽然您可能知道,文件不需要文件扩展名,但文件的前几个字节用于告诉操作系统它是什么文件类型,扩展只是简单易用。

使用Windows开发任何内容时,您可能希望查看文件的实际名称,因此请务必查看其中一条指南,了解如何启用显示文件扩展名,例如this one

如果你不能用JS 总是来获取文件,或者甚至更好地检查文件,那么可以先通过浏览器访问该文件。