1

我正在使用 YiiBackboneBoilerplate。我想用这样的数据填充模型:

- 模型 -

define([
    'jquery', 
    'underscore', 
    'backbone'
    ], function($, _, Backbone) {

        var EvaluateModel = Backbone.Model.extend({

            urlRoot: 'evaluate/process',
            defaults: {
                title: '',
                state: 1
            }
        });

        return EvaluateModel;
    });

- 在我看来 -

    initialize:function() {
        var result = new Evaluate({id:this.id});
        result.fetch({
            success: function(result, response) {
                JSON.stringify(result.model);
            }
        });
    },

-- Yii 动作 --

public function actionProcess() {
    //I have tryed this
    echo json_encode('test');
    Yii::app()->end();

    //and this
    $this->sendResponse(200, CJSON::encode(array('title' => 'test')));
}

我得到 textStatus: parsererror 并且从服务器返回的结果包含当前页面的 html

另外, fetch() 应该根据app.js中的初始设置发送一个POST请求类型,但类型是GET

--app.js--

// initialize Http object to make backbone work with POST instead of GET
Http.initialize({type:'POST'});

有什么问题?

4

2 回答 2

0

我没有看到任何有关Http.initialize. 那是从哪里来的?由于您从服务器获取现有模型,因此 Backbone 将默认发出 GET 请求,即使在模拟 HTTP ( http://backbonejs.org/#Sync-emulateHTTP ) 时也是如此。

其次,可能发生的一件事是您的服务器端框架忽略了application/json请求内容类型类型,并且仅在您调用mypage.jsonURL 时返回 JSON(即它只考虑扩展名)。

默认情况下,Backbond 将/api/cars/12使用 content-type GET (eg)application/json来获取与汽车模型实例 qith id 12 相关的数据。由于它以内容类型请求 JSON,因此它期望返回 JSON。如果您改为调用 (eg) ,则某些 Web 框架默认情况下只会让其 API 返回 JSON 数据/api/cars/12.json。或者,您的 API 可能无法返回 JSON(即 API 不会自动执行此操作,而且您还没有自己配置)。

于 2013-09-26T07:16:24.803 回答
0

我正在从服务器发送一个 jason 数据,如下所示:

protected function sendResponse($status = 200, $body = '', $contentType = 'application/json')
{
    // Set the status
    $statusHeader = 'HTTP/1.1 ' . $status . ' ' . $this->getStatusCodeMessage($status);
    header($statusHeader);
    // Set the content type
    header('Content-type: ' . $contentType);

    echo $body;
    Yii::app()->end();
}


 protected function getStatusCodeMessage($status)
    {
        $codes = array(
            100 => 'Continue',
            101 => 'Switching Protocols',
            200 => 'OK',
            201 => 'Created',
            202 => 'Accepted',
            203 => 'Non-Authoritative Information',
            204 => 'No Content',
            205 => 'Reset Content',
            206 => 'Partial Content',
            300 => 'Multiple Choices',
            301 => 'Moved Permanently',
            302 => 'Found',
            303 => 'See Other',
            304 => 'Not Modified',
            305 => 'Use Proxy',
            306 => '(Unused)',
            307 => 'Temporary Redirect',
            400 => 'Bad Request',
            401 => 'Unauthorized',
            402 => 'Payment Required',
            403 => 'Forbidden',
            404 => 'Not Found',
            405 => 'Method Not Allowed',
            406 => 'Not Acceptable',
            407 => 'Proxy Authentication Required',
            408 => 'Request Timeout',
            409 => 'Conflict',
            410 => 'Gone',
            411 => 'Length Required',
            412 => 'Precondition Failed',
            413 => 'Request Entity Too Large',
            414 => 'Request-URI Too Long',
            415 => 'Unsupported Media Type',
            416 => 'Requested Range Not Satisfiable',
            417 => 'Expectation Failed',
            500 => 'Internal Server Error',
            501 => 'Not Implemented',
            502 => 'Bad Gateway',
            503 => 'Service Unavailable',
            504 => 'Gateway Timeout',
            505 => 'HTTP Version Not Supported',
        );
        return (isset($codes[$status])) ? $codes[$status] : '';
    }
于 2013-09-26T10:27:25.920 回答