python 凸优化_无约束凸优化计算_-Python数据科学技术详解与商业项目实战精讲 - Python学习网...

无约束凸优化计算_无约束凸优化计算_

一对一关联

关联定义

定义一对一关联,例如,一个用户都有一个个人资料,我们定义User模型如下:<?php

namespace app\model;

use think\Model;

class User extends Model

{

public function profile()

{

return $this->hasOne('Profile');

}

}

hasOne方法的参数包括:

hasOne('关联模型','外键','主键');

除了关联模型外,其它参数都是可选。

1.关联模型(必须):关联的模型名或者类名

2.外键:默认的外键规则是当前模型名(不含命名空间,下同)+_id ,例如user_id

3.主键:当前模型主键,默认会自动获取也可以指定传入

一对一关联定义的时候还支持额外的方法,包括:

方法名描述setEagerlyType定义关联查询方式,0 - JOIN查询 1 - IN查询(默认)

bind绑定关联属性到父模型

joinTypeJOIN方式查询的JOIN方式,默认为INNER

selfRelation定义当前关联为自关联

如果使用了JOIN方式的关联查询方式,你可以在额外的查询条件中使用关联对象名(不含命名空间)作为表的别名。

关联查询

定义好关联之后,就可以使用下面的方法获取关联数据:$user = User::find(1);

// 输出Profile关联模型的email属性

echo $user->profile->email;

默认情况下, 我们使用的是user_id 作为外键关联,如果不是的话则需要在关联定义的时候指定,例如:<?php

namespace app\model;

use think\Model;

class User extends Model

{

public function profile()

{

return $this->hasOne('Profile','uid');

}

}

有一点需要注意的是,关联方法的命名规范是驼峰法,而关联属性则一般是小写+下划线的方式,系统在获取的时候会自动转换对应,读取user_profile关联属性则对应的关联方法应该是userProfile。

根据关联数据查询

可以根据关联条件来查询当前模型对象数据,例如:// 查询用户昵称是think的用户

// 注意第一个参数是关联方法名(不是关联模型名)

$users = User::hasWhere('profile', ['nickname'=>'think'])->select();

// 可以使用闭包查询

$users = User::hasWhere('profile', function($query) {

$query->where('nickname', 'like', 'think%');

})->select();

预载入查询

可以使用预载入查询解决典型的N+1查询问题,使用:$users = User::with('profile')->select();

foreach ($users as $user) {

echo $user->profile->name;

}

上面的代码使用的是IN查询,只会产生2条SQL查询。

如果要对关联模型进行约束,可以使用闭包的方式。$users = User::with(['profile'=> function($query) {

$query->field('name,email');

})->select();

foreach ($users as $user) {

echo $user->profile->name;

}

with方法可以传入数组,表示同时对多个关联模型(支持不同的关联类型)进行预载入查询。$users = User::with(['profile','book'])->select();

foreach ($users as $user) {

echo $user->profile->name;

foreach($user->book as $book) {

echo $book->name;

}

}

如果需要使用JOIN方式的查询,直接使用withJoin方法,如下:$users = User::withJoin('profile')->select();

foreach ($users as $user) {

echo $user->profile->name;

}

withJoin方法默认使用的是INNER JOIN方式,如果需要使用其它的,可以改成$users = User::withJoin('profile', 'LEFT')->select();

foreach ($users as $user) {

echo $user->profile->name;

}

需要注意的是withJoin方式不支持嵌套关联,通常你可以直接传入多个需要关联的模型。

如果需要约束关联字段,可以使用下面的简便方法。$users = User::withJoin([

'profile'=>['name', 'email']

])->select();

foreach ($users as $user) {

echo $user->profile->name;

}

关联保存$user = User::find(1);

// 如果还没有关联数据 则进行新增

$user->profile()->save(['email' => 'thinkphp']);

系统会自动把当前模型的主键传入Profile模型。

和新增一样使用save方法进行更新关联数据。$user = User::find(1);

$user->profile->email = 'thinkphp';

$user->profile->save();

// 或者

$user->profile->save(['email' => 'thinkphp']);

定义相对关联

我们可以在Profile模型中定义一个相对的关联关系,例如:<?php

namespace app\model;

use think\Model;

class Profile extends Model

{

public function user()

{

return $this->belongsTo('User');

}

}

belongsTo的参数包括:

belongsTo('关联模型','外键','关联主键');

除了关联模型外,其它参数都是可选。

1.关联模型(必须):模型名或者模型类名

2.外键:当前模型外键,默认的外键名规则是关联模型名+_id

3.关联主键:关联模型主键,一般会自动获取也可以指定传入

默认的关联外键是user_id,如果不是,需要在第二个参数定义<?php

namespace app\model;

use think\Model;

class Profile extends Model

{

public function user()

{

return $this->belongsTo('User','uid');

}

}

我们就可以根据档案资料来获取用户模型的信息$profile = Profile::find(1);

// 输出User关联模型的属性

echo $profile->user->account;

绑定属性到父模型

可以在定义关联的时候使用bind方法绑定属性到父模型,例如:<?php

namespace app\model;

use think\Model;

class User extends Model

{

public function profile()

{

return $this->hasOne('Profile','uid')->bind('nickname,email');

}

}

或者使用数组的方式指定绑定属性别名<?php

namespace app\model;

use think\Model;

class User extends Model

{

public function profile()

{

return $this->hasOne('Profile','uid')->bind([

'email',

'truename'=> 'nickname',

]);

}

}

然后使用关联预载入查询的时候,可以使用$user = User::with('profile')->find(1);

// 输出Profile关联模型的email属性

echo $user->email;

echo $user->profile_id;

绑定关联模型的属性支持读取器。

如果不是预载入查询,请使用模型的appendRelationAttr方法追加属性。

也可以使用动态绑定关联属性,可以使用$user = User::find(1)->bindAttr('profile',['email','nickname']);

// 输出Profile关联模型的email属性

echo $user->email;

echo $user->profile_id;

同样支持指定属性别名$user = User::find(1)->bindAttr('profile',[

'email',

'truename'=> 'nickname',

]);

// 输出Profile关联模型的email属性

echo $user->email;

echo $user->profile_id;

关联自动写入

我们可以使用together方法更方便的进行关联自动写入操作。

写入$blog = new Blog;

$blog->name = 'thinkphp';

$blog->title = 'ThinkPHP5关联实例';

$content = new Content;

$content->data = '实例内容';

$blog->content = $content;

$blog->together(['content'])->save();

如果绑定了子模型的属性到当前模型,可以指定子模型的属性$blog = new Blog;

$blog->name = 'thinkphp';

$blog->title = 'ThinkPHP5关联实例';

$blog->content = '实例内容';

// title和content是子模型的属性

$blog->together(['content'=>['title','content']])->save();

更新// 查询

$blog = Blog::find(1);

$blog->title = '更改标题';

$blog->content->data = '更新内容';

// 更新当前模型及关联模型

$blog->together(['content'])->save();

删除// 查询

$blog = Blog::find(1,'content');

// 删除当前及关联模型

$blog->together(['content'])->delete();

如果不想这么麻烦每次调用together方法,也可以直接在模型类中定义relationWrite属性,但必须是数组方式。不过考虑到模型的独立操作的可能性,并不建议。

任务

?不会了怎么办

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值