我正在尝试按照我的简单产品表中的Yii2.0示例进行操作 而不是用户。
http://www.yiiframework.com/doc-2.0/guide-rest-quick-start.html
我使用的是基本套餐,而不是高级版。
当我尝试访问localhost / product时 我收到404错误。
当我使用localhost / index.php或localhost / index.php / gii时 我得到了预期的结果(默认主页和gii工具)。
以下是我正在使用的内容。
配置文件web.php
$params = require(__DIR__ . '/params.php');
$config = [
'id' => 'basic',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'components' => [
'request' => [
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
'cookieValidationKey' => 'xxx',
'parsers' => [
'application/json' => 'yii\web\JsonParser',
],
],
'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
['class' => 'yii\rest\UrlRule', 'controller' => 'product'],
],
],
'cache' => [
'class' => 'yii\caching\FileCache',
],
'user' => [
'identityClass' => 'app\models\User',
'enableAutoLogin' => true,
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
// send all mails to a file by default. You have to set
// 'useFileTransport' to false and configure a transport
// for the mailer to send real emails.
'useFileTransport' => true,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'db' => require(__DIR__ . '/db.php'),
],
'params' => $params,
];
if (YII_ENV_DEV) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';
config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
}
return $config;
Model Product.php
namespace app\models;
use yii\db\ActiveRecord;
/**
* This is the model class for table "product".
*
* @property integer $ProductID
* @property string $Name
* @property double $Price
* @property string $ShortDesc
* @property string $LongDesc
* @property string $PicUrl
*/
class Product extends ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'product';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['Price'], 'number'],
[['ShortDesc', 'LongDesc', 'PicUrl'], 'string'],
[['Name'], 'string', 'max' => 60]
];
}
/**
* @inheritdoc
*/
public static function primaryKey()
{
return ['ProductID'];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'ProductID' => 'Product ID',
'Name' => 'Name',
'Price' => 'Price',
'ShortDesc' => 'Short Desc',
'LongDesc' => 'Long Desc',
'PicUrl' => 'Pic Url',
];
}
}
控制器ProductController.php
use yii\rest\ActiveController;
class ProductController extends ActiveController
{
public $modelClass = 'app\models\Product';
}
我试图关闭' enableStrictParsing'并将$ pluralize设置为false,没有运气。
我还尝试添加这个.htaccess文件,它给了我500而不是404。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
我确定我在这里做了些蠢事,但是任何愿意指出这一点的人都会有很大的帮助。
谢谢!
答案 0 :(得分:2)
只需将enableStrictParsing
设置为false
数组中的urlManager
。
答案 1 :(得分:1)
Scallopboat - 我有同样的问题。我在Yii2论坛上提出了它并得到了答案。您应该使用的网址是http://localhost/basic/web/index.php/products。
我还被建议将'showScriptName'更改为true。建议是否则链接不会生成确定。
还有人建议我可以编写一些重写规则来使用更清晰的URL。
答案 2 :(得分:1)
@scallopboat - 我也有类似的问题。我对view
行动收到了404回复。
按照
的指示解决How to configure urlManager to use rest api with string id
'rules' => [
[
'class' => 'yii\rest\UrlRule',
'controller' => 'region',
'pluralize'=>false,
'tokens' => [ '{id}' => '<id:\\w+>' ]
],
],
使用以下网址访问view
操作:
http://localhost/icdp-service/region/[mongo-id]
希望这有帮助。
答案 3 :(得分:0)
Scallopboat。您可以尝试这种方式,但尚未解决问题。 如果您使用Apache作为Web服务器,则应该
httpd.conf
并找到类似的块
<Directory>****</Directory>
和<Directory "your web root
dir">****</Directory>
,修改AllowOverride None
即可
AllowOverride All
#LoadModule rewrite_module modules/ApacheModuleRewrite.dll
.hataccess
文件放在index.php的基本目录中