你好,我想问一个关于非官方axis2/c的问题。
我安装了最新版本,并尝试运行示例"ExampleJsonEchoClient"(位于https://code.google.com/p/axis2c-unofficial/wiki/ExampleJsonEchoClient)当一个页面在localhost中加载时,带有一个复选按钮,点击它时没有响应
在同一页提供的指南中,有以下步骤:"将jquery下载到该目录中,并将其命名为jquery.js",并提供了一个链接:http://jquery.com/download/
我应该下载哪个版本?我应该把整个文件夹命名为jquery.js吗?或者使用名为jquery的文件夹中的文件?
提前谢谢。
编辑:谢谢成功了!
奇怪的是,我现在在尝试将axis2/c非官方安装到第二台计算机时遇到了安装问题
我按照说明操作,但收到以下错误信息
json/axis2_json_writer.c: In function 'axis2_json_writer_get_json_string':
json/axis2_json_writer.c:173:64: error: 'JSON_C_TO_STRING_PLAIN' undeclared
(first use in this function)
json/axis2_json_writer.c:173:64: note: each undeclared identifier is reported only once for each function it appears in
make[7]: *** [axis2_json_writer.lo] Error 1
make[7]: Leaving directory `/home/.../axis2c-unofficial/src/core/transport/http/sender'
make[6]: *** [all-recursive] Error 1
make[6]: Leaving directory `/home/.../axis2c-unofficial/src/core/transport/http/sender'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory `/home/.../axis2c-unofficial/src/core/transport/http'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/.../axis2c-unofficial/src/core/transport'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/.../axis2c-unofficial/src/core'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/./axis2c-unofficial/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/.../axis2c-unofficial'
make: *** [all] Error 2
我想不通。。。
您可以使用任何目录结构,但echo.html
希望jquery.js
和echo.js
与echo.html
位于同一目录中。
在echo.html
中可以很容易地更改路径,但在示例中,目录结构很简单,即所有文件(echo.html
、jquery.js
和echo.js
)都在/var/www/json-echo/
目录中。
/var/www/json-echo/
echo.html
echo.js
jquery.js
要使用JSON,您可以使用任何现代版本的jQuery(1.x或2.x),无论是压缩的还是未压缩的,以满足您的口味。下载jquery-x.xx.x(.min).js
后,将其重命名为jquery.js
(或编辑echo.html
)。
正如jquery.org/download网站上所写的那样,版本1.x和2.x之间没有具体的区别,除了Internet Explorer支持:
jQuery2.x具有与jQuery1.x相同的API,但不支持Internet Explorer 6、7或8。