1

FW/1 似乎面向返回完整的网页,如果需要 JSON 数据怎么办?典型的布局如下所示:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
   <title>User Manager</title>
   <link rel="stylesheet" type="text/css" href="assets/css/styles.css" />
</head>
<body>


<h1>User Manager</h1>

<ul class="nav horizontal clear">
<li><a href="index.cfm">Home</a></li>
<li><a href="index.cfm?action=user.list" title="View the list of users">Users</a></li>
<li><a href="index.cfm?action=user.form" title="Fill out form to add new user">Add User</a></li>
<li><a href="index.cfm?reload=true" title="Resets framework cache">Reload</a></li>
</ul>

<br />

<div id="primary">
    <cfoutput>#body#</cfoutput>
</div>

</div>

</body>
</html>
4

3 回答 3

7

从 FW/1 2.2 开始,您可以调用:

variables.fw.renderData( "json", result );

在你的控制器中,它会做你想做的事。

于 2013-12-11T06:04:46.623 回答
3

我使用了覆盖onMissingView()Framework.cfc 方法的代码。

我将我的响应包装在一个名为的变量中,rc.json然后在我的 Application.cfc 中使用与此类似的代码。

function onMissingView( rc ){
    if( structKeyExists( rc, 'json' ){
        var response = getPageContext().getresponse()
        response.setContentType( 'application/json' );
        return serializeJSON( rc.json );
    }
    else{
        //we need this to fire off valid onMissignView error.
        raiseException( "FW1.viewNotFound", "Unable to find a view for '#request.action#' action.", " '#request.missingView#' does not exist.");
    }
}

我使用其他逻辑来执行cfdump请求rc.json何时不是 AJAX 请求。但这被缩小到最低限度。

于 2013-08-26T16:50:33.427 回答
1

这会做到的

 <!--- Load all variables into response rather than just rc --->
 <cfparam name="rc.response" default="#structNew()#">
 <cfparam name="rc.response.status" default="OK">

 <!--- Stop layouts from cascading --->
 <cfset request.layout = false>

 <cfsetting showDebugOutput="No">
 <cfheader name="Content-Type" value="application/json" />

  <cfoutput>#SerializeJSON(rc.response)#</cfoutput>
于 2013-08-26T16:33:29.453 回答