美文网首页
Web context 坑

Web context 坑

作者: 贾老师和他的朋友们 | 来源:发表于2019-10-18 10:18 被阅读0次

    Web contextPath结尾有没有/,这是个问题吗?的确是。
    contextPath结尾没有/。
    contextPath结尾没有/。
    contextPath结尾没有/。
    我们一般的操作是context+'/a/b/c'这种模式。这个是没问题的。但是如果我们自动拼接时,例如从服务器返回一个相对路径,例如图片,我们一般是/开始的,那么context+'/'+返回url,
    1、非ROOT,context是test
    /test//files/1.png
    2、ROOT,
    //files/1.png
    这两个有什么不同?
    真正访问服务器时,
    1、http://localhost/test//files/1.png
    2、http://files/1.png
    知道了吗?

    相关文章

      网友评论

          本文标题:Web context 坑

          本文链接:https://www.haomeiwen.com/subject/clximctx.html