Git Product home page Git Product logo

Comments (5)

jqhph avatar jqhph commented on August 26, 2024

感谢反馈

from dcat-admin.

jqhph avatar jqhph commented on August 26, 2024

刚才检查了下代码,模型树保存排序的功能是没有带行ID的,所以严格来说这个并不算问题。不知道你想要saved事件中用isCreating判断做什么?

from dcat-admin.

lilashih avatar lilashih commented on August 26, 2024

用來判斷要更新創建者還是編輯者

$form->saved(function (Form $form, $result) {
    if ($form->isCreating()) {
        event(new CreatorUpdated($form->repository()->eloquent(), Admin::user()));
    } else {
        event(new UpdaterUpdated($form->repository()->eloquent(), Admin::user()));
    }
});

from dcat-admin.

jqhph avatar jqhph commented on August 26, 2024

用來判斷要更新創建者還是編輯者

$form->saved(function (Form $form, $result) {
    if ($form->isCreating()) {
        event(new CreatorUpdated($form->repository()->eloquent(), Admin::user()));
    } else {
        event(new UpdaterUpdated($form->repository()->eloquent(), Admin::user()));
    }
});

看你这个像是操作日志,也许可以这样使用

$form->saved(function (Form $form, $result) {
     if (request()->get('_order') && $form->isCreating()) {
         // 保存排序操作
      
    } elseif ($form->isCreating()) {
        event(new CreatorUpdated($form->repository()->eloquent(), Admin::user()));
    } else {
        event(new UpdaterUpdated($form->repository()->eloquent(), Admin::user()));
    }
});

from dcat-admin.

lilashih avatar lilashih commented on August 26, 2024

好的 這樣應該OK 感謝~

from dcat-admin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.