获取"无法更新"消息尽管成功更新

时间:2013-01-05 01:09:38

标签: jquery coldfusion cfc

在Coldfusion中使用jquery插件http://code.google.com/p/jquery-in-place-editor/

它在CFM页面上的帖子效果很好,但是当我将更新移动到CFC时,尽管更新成功,我仍然开始收到“无法更新值”消息。

这是jquery调用:

<script>
  $("#editTitle").editInPlace({
    //url: "http://mydomain.com/edit_ref.cfm",
    url: "http://mydomain.com/cfcs/eh_utilities.cfc?method=updateTitle",
    hover_class: "theHover",
    params: "id=<cfoutput>#URL.id#</cfoutput>",
});

CFC:

<cffunction name="updateTitle" access="remote" returntype="any">
    <cfargument name="id" required="yes" type="numeric"> 
    <cfargument name="update_value" required="yes" type="string"> 
    <cfquery name="qEditTitle" datasource="#application.datasource#">
        update eh_reference set title = '#update_value#' where id = #id#
    </cfquery>
    <cfreturn update_value>
</cffunction>

如上所述,更新成功,但在更新后我收到来自就地编辑的Javascript警报,指出“无法更新值”。

谢谢!

0 个答案:

没有答案