主题 : jeecms前台页面的链接在后台是如何解析的?
级别: 童生
UID: 8923
积分:6 加为好友
威望: 0 精华: 0
主题:1 回复:4
注册时间:2010-07-12
在线时长:0
1#   发表于:2010-07-19 12:01:34  IP:110.219.*.*
jeecms前台页面的链接在后台是如何解析的? 像这样的
http://127.0.0.1:8080/jeecms/qiyebangong/38.htm
级别: 白丁
UID: 8992
积分:7 加为好友
威望: 0 精华: 0
主题:0 回复:8
注册时间:2010-07-14
在线时长:0
2#   发表于:2010-07-20 16:08:31  IP:58.78.*.*
public java.lang.String getContentResPath () {
return contentResPath;
}

/**
 * Set the value related to the column: CONTENT_RES_PATH
 * @param contentResPath the CONTENT_RES_PATH value
 */
public void setContentResPath (java.lang.String contentResPath) {
this.contentResPath = contentResPath;
}



这段代码中的contentResPath参数好像就是设置链接地址的 ,我也是想改链接地址。请问这个参数是在那设置的。
1 共1页