Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
883 views
in Technique[技术] by (71.8m points)

eloquent - Dealing with malfromed array errors in laravel

I'm getting this error :

IlluminateDatabaseQueryException
SQLSTATE[22P02]: Invalid text representation: 7 ERROR: malformed array literal: "["5","7"]" DETAIL: "[" must introduce explicitly-specified array dimensions

whenever i'm trying to store the array input result to my postgres database.

This the lines of code in my controller:

$iitems=$request->input('parcel_items', []); 

$parcel->update(['parcel_items_sku' => $iitems]);
question from:https://stackoverflow.com/questions/65860460/dealing-with-malfromed-array-errors-in-laravel

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

you can convert your array to the string with json_encode and then save it, and when you want to use it you need to decode it with json_decode, that is a solution that can help you
So convert this

$iitems=$request->input('parcel_items', []); 
$parcel->update(['parcel_items_sku' => $iitems]);

To this

$iitems=$request->input('parcel_items', []); 
$parcel->update(['parcel_items_sku' => json_encode($iitems)]);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...