req.user に のインスタンスを入力してサーバーで認証し、cds.User
いくつかの属性を追加します。
User {
id: '110226363079182595683',
attr: { name: 'depth1', email: 'depth1@protonmail.com' },
_roles: { 'identified-user': true, 'authenticated-user': true }
}
これにより、認証されたユーザーで CDS サービスを呼び出すことができます。
それはうまくいきます。
次に、CDS スキーマにエンティティがあります。
entity Comments {
key ID : Integer;
project : Association to Projects;
title : String;
text : String;
CreatedBy : String @cds.on.insert : $user;
CreatedByName : String @cds.on.insert : $user.name;
}
SQLite データベース上の私のスキーマ。サーバーを起動し、OData V4 にコメントを挿入できる UI5 アプリケーションを起動すると、次のようになります。
HTTP リクエスト:
--batch_id-1642708209182-45
Content-Type:application/http
Content-Transfer-Encoding:binary
POST Projects(1)/comments HTTP/1.1
Accept:application/json;odata.metadata=minimal;IEEE754Compatible=true
Accept-Language:fr-FR
Content-Type:application/json;charset=UTF-8;IEEE754Compatible=true
{"ID":0,"text":"test comment"}
--batch_id-1642708209182-45--
Group ID: $auto
サーバーログ:
[cds] - > CREATE Projects(1)/comments
HTTP 応答:
--batch_id-1642708209182-45
content-type: application/http
content-transfer-encoding: binary
HTTP/1.1 201 Created
odata-version: 4.0
content-type: application/json;odata.metadata=minimal;IEEE754Compatible=true
location: Comments(101)
{"@odata.context":"../$metadata#Comments/$entity","ID":101,"project_ID":1,"title":null,"text":"test comment","CreatedBy":"110226363079182595683","CreatedByName":"depth1"}
--batch_id-1642708209182-45--
HTTP リクエスト:
--batch_id-1642708209355-46
Content-Type:application/http
Content-Transfer-Encoding:binary
GET Projects(1)/comments(101)?$select=CreatedByName,ID,text HTTP/1.1
Accept:application/json;odata.metadata=minimal;IEEE754Compatible=true
Accept-Language:fr-FR
Content-Type:application/json;charset=UTF-8;IEEE754Compatible=true
--batch_id-1642708209355-46--
Group ID: $auto
サーバーログ
[cds] - > READ Projects(1)/comments(101) { '$select': 'CreatedByName,ID,text' }
HTTP レスポンス
--batch_id-1642708209355-46
content-type: application/http
content-transfer-encoding: binary
HTTP/1.1 200 OK
odata-version: 4.0
content-type: application/json;odata.metadata=minimal;IEEE754Compatible=true
{"@odata.context":"../$metadata#Comments(CreatedByName,ID,text)/$entity","CreatedByName":null,"ID":101,"text":"aaa"}
--batch_id-1642708209355-46--
私のデータベースでは、CreatedBy
は満たされていますが、そうではありませんCreatedByName
。また、Create リクエストではCreatedByName
、サーバーによって埋められて返されましたが、それは本当に奇妙です。
cds.User
データベースにいくつかの属性を挿入するにはどうすればよいですか?! ありがとうございました !