我正在使用 jQuery.post() 调用 Coldfusion 组件 (cfc)。我需要返回的数字的整数或字符串表示形式,以便在 URL 中使用。
{"PAGE":"My Page Title","ID":19382}
or
{"PAGE":"My Page Title","ID":"19382"}
相反,我得到的是一个小数:
{"PAGE":"My Page Title","ID":19382.0}
需要更新以下 HTML:
<a href="page.cfm?id=19382" id="pagelink">My Page Title</a>
从概念上讲,我想有多个答案:
1)我可以使用jQuery来获取小数点左边的数字。
2)我可以强制 Coldfusion 将数字作为字符串发送。
3)我可以生成整个链接服务器端,只需替换整个链接标签 HTML(不是首选答案,但也许是最好的)
有谁知道如何做1或2?3更好吗?
相关 Javascript:(未优化)
$(".link").live('click', function () {
var $linkID, serviceUrl;
serviceUrl = "mycfc.cfc?method=getPage";
$linkID = $(this).attr("rel");
$.post(serviceUrl, { linkid: $linkID }, function (result) {
$('#pagelink').val(result.TITLE);
if (result.FMKEY.length) {
// NEED the ID number WITHOUT the .0 at the end
$('#pagelink').attr("href") = "page.cfm?id=" + result.ID;
$('#pagelink').text(result.TITLE);
}
}, "json");
});
我的 CFC:
<component output="no">
<cfsetting showdebugoutput="no">
<cffunction name="getPage" access="remote" returnFormat="JSON" output="no" hint="Looks up a Page Title and ID">
<cfargument name="linkID" type="string" required="yes">
<cfset var page = queryNew("id,title")>
<cfset var result = structNew()>
<cfquery datasource="myDatasource" name="page">
SELECT TOP 1 id, title
FROM pages
WHERE linkID = <cfqueryparam cfsqltype="cf_sql_integer" value="#arguments.linkID#">
</cfquery>
<cfif page.recordcount>
<cfset result.id = page.id>
<cfset result.title = page.title>
</cfif>
<cfreturn result>
</cffunction>
</component>