我在我的应用程序中混淆了 URL(这很棒),但我想为分页 URL 禁用此功能,因为我希望用户能够输入他们喜欢的任何数字。
设置.cfm:
<cfset set(obfuscateURLs = true) />
Home.cfc(控制器):
<cffunction name="home">
<cfparam name="params.page" default="1" />
<cfset linkList = model("link").findAll(
select="linkTitle,linkPoints,linkID,linkAuthority,linkCreated,linkUpVoteCount,linkDownVoteCount,linkCommentCount,userName,userID",
include="user",
order="linkPoints DESC",
handle="linkListPaging",
page=params.page,
perPage=5
) />
</cffunction>
Home.cfm(查看)
<ul class="pagination">
<cfoutput>
#paginationLinks(
route="paginateLatest",
handle="linkListPaging",
page=1,
name="page",
windowSize=5,
prependToPage="<li>",
appendToPage="</li>",
classForCurrent="current"
)#
</cfoutput>
</ul>
我可以根据需要进行 DeObfuscate 吗?
谢谢,迈克尔