|
...
|
...
|
@@ -234,7 +234,7 @@ class TicketUploadDataLogic extends BaseLogic |
|
|
|
public function save5NewsData($info,$url){
|
|
|
|
$response = Http::withHeaders([])->asForm()->post($url, [
|
|
|
|
'title' => $info['text']['title'] ?? 'ceshi123',
|
|
|
|
'cate' => $info['text']['cate'] ?? '',
|
|
|
|
'cate' => isset($info['text']['cate']) ? implode(',', $info['text']['cate']) : '',
|
|
|
|
'content'=>$info['text']['content'] ?? '',
|
|
|
|
'image'=>$info['text']['image'] ?? '',
|
|
|
|
]);
|
...
|
...
|
|