1

我对 Slim 还很陌生,到目前为止还没有遇到任何问题 - 一切都按预期工作,直到这个问题。我已经搜索和搜索,但我一定没有找对地方。

我将 AngularJS 与 Slim 和 NotORM 一起使用。到目前为止,我已经完成了用户身份验证,并且正在制作一个简单的状态更新表单,该表单将保存到数据库表中——“发布”。表单本身很简单,只包含一个 textarea 元素,其中 ng-model 设置为“message.text”。提交时,在控制器中调用 doPost(message):

$scope.doPost = function(message) {
        Data.post('message', {
            message: message
        }).then(function(results) {
            Data.toast(results);
            loadRemoteData();
        }, function(error) {
            console.log('message failed to send: ' + error);
        });
        $scope.message = {
            content: ''
        }
    }

我在数据服务 (Data.post('message')) 中的代码是:

var obj = {};
obj.post = function (q, object) {
    return $http.post(serviceBase + q, object)
    .then(function(results) {
        return results.data;
    },
    function(error) {
        console.log('failed -->' + results.data + '<--');
    });
};
return obj;

然后是PHP:

$app->post('/message', function() use ($app, $db) {
    $response = array();
    $r = json_decode($app->request->getBody());
    $userid = $_SESSION['uid'];
    $displayname = $_SESSION['displayname'];
    verifyRequiredParams(array('text'), $r->message);
    $message = $db->post();
    $data = array(
        'userid' => $uid,
        'displayname' => $displayname,
         'text' => $r->message->text
    );

    $result = $message->insert($data);

    if($result != NULL) {
        $response['status'] = 'success';
        $response['message'] = 'Post successful';
        $response['id'] = $result['id'];
        echoResponse(200, $response);
    } else {
        $response["status"] = "error";
        $response["message"] = "Failed to create message. Please try again";
        echoResponse(200, $response);
    }
});

在 echoResponse() 中:

function echoResponse($status_code, $response) {

    $app = \Slim\Slim::getInstance();

    // Http response code
    $app->status($status_code);

    // setting response content type to json
    $app->contentType('application/json');

    echo json_encode($response);
}

这几乎就是代码。没有错误,但是 message.text 没有发布到数据库并且返回的响应是空的。我在页面上创建了另一个表单,其中包含文本类型的输入字段,并且使用重复的方法可以正常工作。我已经尝试了我能想到的一切,对我来说最突出的是 Response-Header 的 Content-Type 不知何故是 text/html 而不是 application/json(测试表单显示 json)。我要发布到的表如下所示:

CREATE TABLE IF NOT EXISTS `post` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL,
`displayname` varchar(50) CHARACTER SET utf8,
`text` text CHARACTER SET utf8,
`date` timestamp DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;

任何帮助,将不胜感激。谢谢。

以下是标题:

Response Headers
Access-Control-Allow-Head... origin, x-requested-with, content-type
Access-Control-Allow-Meth... PUT, GET, POST, DELETE, OPTIONS
Access-Control-Allow-Orig... *
Connection  Keep-Alive
Content-Length  0
Content-Type text/html
Date Fri, 09 Jan 2015 11:52:12 GMT
Keep-Alive timeout=5, max=92
Server Apache/2.2.26 (Unix) DAV/2 PHP/5.4.30 mod_ssl/2.2.26 OpenSSL/0.9.8za
X-Powered-By PHP/5.4.30

Request Headers
Accept application/json, text/plain, */*
Accept-Encoding gzip, deflate
Accept-Language en-US,en;q=0.5
Content-Length 32
Content-Type application/json;charset=utf-8
Cookie PHPSESSID=g9ooedu5kk513pk5f5djug42c4
Host localhost
Referer localhost
User-Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:34.0) Gecko/20100101   Firefox/34.0
4

4 回答 4

2

您可以使用以下方法设置 Slim 应用的全局内容:

$app->contentType('application/json');
于 2015-04-20T09:38:33.257 回答
0

你需要抓住 $response 因为它是一个受保护的对象......

$response = $app->response();
$response->header('Content-Type', 'application/json');

$app->render(
  file_get_contents($app->config('templates') . $template), $myPageVars
);

我选择在模板中实际计算出 JSON,而不是直接转储 PHP 数据。允许稍后更改您的数据馈送,而无需使用数据源。

于 2015-04-18T01:22:59.990 回答
0

没有接受的答案,因此从文档(Slim 3)中记录下来:

$newResponse = $oldResponse->withHeader('Content-type', 'application/json');
于 2016-07-20T04:37:26.177 回答
0
# $result is the whatever you want to output
$response->getBody()->write(json_encode($result));
return $response->withHeader('Content-type', 'application/json');
于 2019-10-08T06:28:21.323 回答