簡體   English   中英

Yii2:Rest POST 請求參數未到達

[英]Yii2: Rest POST Request Parameters not arriving

早上好,

我在這個話題上沒有進一步了解,所以我在這里寫一個問題。

首先,我使用教程中的數據創建了一個數據庫表: https://www.yiiframework.com/doc/guide/2.0/en/start-databases

然后我使用上面的數據從該教程創建了 Rest Controller: https://www.yiiframework.com/doc/guide/2.0/en/

教程中的第一個示例 GET 請求工作正常,並為我提供了數據庫中的所有數據。 我的請求 URL: http://XX.XX12:XX90/country/

現在我們在嘗試通過 POST 請求在數據庫中創建一個新國家時遇到了我的錯誤。 當使用教程下方的 CURL 命令和我的測試數據時,我收到以下錯誤:

SQLSTATE[HY000]: General error: 1364 Field 'code' doesn't have a default value**strong text**

(
    [0] => HY000
    [1] => 1364
    [2] => Field 'code' doesn't have a default value
)

我從 rest api 的標准日志記錄說 POST Var 是空的,但為什么呢? 我還測試了通過工具(郵遞員)發送 POST 請求,但我得到了同樣的錯誤。

$_GET = []

$_POST = []

$_FILES = []

$_COOKIE = []

$_SERVER = [....]

我的 Model:

<?php

namespace app\models;

use yii\db\ActiveRecord;

class Country extends ActiveRecord
{
}

我的 Controller:

<?php

namespace app\controllers;

use yii\rest\ActiveController;

class CountryController extends ActiveController
{
    public $modelClass = 'app\models\Country';
}

我的 CURL 請求:

curl -i -H "Accept:application/json" -H "Content-Type:application/json" \
    -XPOST "http://XX.X.X.12:XX90/countries/" \
    -d '{"code": "TEST", "name": "TestCountry", "population": 01}'

我的 web.php 配置:

<?php

$params = require __DIR__ . '/params.php';
$db = require __DIR__ . '/db.php';

$config = [
    'id' => 'basic',
    'basePath' => dirname(__DIR__),
    'bootstrap' => ['log'],
    'aliases' => [
        '@bower' => '@vendor/bower-asset',
        '@npm'   => '@vendor/npm-asset',
    ],
    'name' => 'Yii2-ExtJS Rest API',
    'modules' => [
        'user' => [
            'class' => Da\User\Module::class,
            // ...other configs from here: [Configuration Options](installation/configuration-options.md), e.g.
            'administrators' => ['admin'], // this is required for accessing administrative actions
            // 'generatePasswords' => true,
            // 'switchIdentitySessionKey' => 'myown_usuario_admin_user_key',
        ],
        'debug' => [
            'class' => 'yii\debug\Module',
            'allowedIPs' => ['XX.X.X.XXX', 'XX.XXX.XXX.XXX', '127.0.0.1', '::1']
        ],
    ],
    'components' => [
        'request' => [
            // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
            'cookieValidationKey' => 'XXXXXXXXXXXXXXXX',
            'parsers' => [
                'application/json' => 'yii\web\JsonParser',
            ] 
        ],
        'cache' => [
            'class' => 'yii\caching\FileCache',
        ],
        'errorHandler' => [
            'errorAction' => 'site/error',
        ],
        'mailer' => [
            'class' => \yii\symfonymailer\Mailer::class,
            'viewPath' => '@app/mail',
            // send all mails to a file by default.
            'useFileTransport' => true,
        ],
        'authManager' => [
            'class' => 'yii\rbac\DbManager',
        ],
        'log' => [
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
                [
                    'class' => 'yii\log\FileTarget',
                  //  'levels' => ['error', 'warning', 'trace', 'info'],
                ],
            ],
        ],
        'db' => $db,
        'urlManager' => [
            'enablePrettyUrl' => true,
            'enableStrictParsing' => false,
            'showScriptName' => false,
            'rules' => [
                ['class' => 'yii\rest\UrlRule',
                 'controller' => 'country'],
            ], 
        ],
    ],
    'params' => $params,
];

if (YII_ENV_DEV) {
    // configuration adjustments for 'dev' environment
    $config['bootstrap'][] = 'debug';
    $config['modules']['debug'] = [
        'class' => 'yii\debug\Module',
        // uncomment the following to add your IP if you are not connecting from localhost.
        'allowedIPs' => ['XX.X.X.XX', '::1'],
    ];

    $config['bootstrap'][] = 'gii';
    $config['modules']['gii'] = [
        'class' => 'yii\gii\Module',
        // uncomment the following to add your IP if you are not connecting from localhost.
        //'allowedIPs' => ['127.0.0.1', '::1'],
    ];
}

return $config;

建議?

您需要聲明使用 Rest API 的驗證規則

感謝@Bizley

我的國家 Model 現在:

<?php

namespace app\models;

use yii\db\ActiveRecord;

class Country extends ActiveRecord
{

    public function rules()
    {
        return [
            [['code', 'name', 'population'], 'required']
        ];
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM