Giter VIP home page Giter VIP logo

Comments (5)

dukmaurice avatar dukmaurice commented on July 18, 2024

Same issue, I just add an other control in EloquentFilter.php line 118 :

if (!is_array($value) || $value === null)

instead of :

if ($value === null) {

Maybe because I have a custom buildDocument function with relation :

public function buildDocument() { return [ "created_at" => $this->created_at->toDateTimeString(), "uuid" => $this->uuid, "address" => $this->address, 'imei' => $this->imei, 'checkresult' => $this->checkresult, "type" => $this->type->code.' - '.$this->type->name ]; }
It's ok now (I think) :)

from plastic.

sleimanx2 avatar sleimanx2 commented on July 18, 2024

The thing is that if the function reaches isMultiLevelArray it means that the current value is instanceof Relation and for that reason the value can only be an array.

@dukmaurice do you have a method type that returns a relation in your model ?

from plastic.

xjqxz2 avatar xjqxz2 commented on July 18, 2024

I debug my program with dd() output $value But it is not an array, is a string, because isMultiLevelArray limited to receive array, so reported this error.

@sleimanx2

from plastic.

sleimanx2 avatar sleimanx2 commented on July 18, 2024

@xjqxz2 yes but if isMultiLevelArray receives a string it means that there is something wrong with the Model setup can you share the model that is facing this issue ?

from plastic.

ellisio avatar ellisio commented on July 18, 2024

Kind of late, but I want to shed light on this. If you have the following in your model:

public function author()
{
     return $this->belongsTo(Author::class);
}

Then you configure buildDocument() like so:

public function buildDocument()
{
    return [
        'id' => $this->id,
        'title' => $this->title,
        'author' => 'Tom Clancy',
    ];
}

This will throw this error. This is because the $value is "Tom Clancy" when it is being passed to this method. The reason this error happens is because the $relation is set by finding the author() on the Book class.

To fix this you need to change buildDocument() to this:

public function buildDocument()
{
    return [
        'id' => $this->id,
        'title' => $this->title,
        'author' => $this->author,
    ];
}

from plastic.

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.