我有这条路线:
$stockStatus = getStockStatus(12);
$pqty = $stockStatus['pqty'];
我的ApplyController中的和上传功能是:
{{1}}
在此场景中,函数upload_main_pic_news($ request)未调用。怎么了?
提前感谢您的回答。
答案 0 :(得分:0)
更改
upload_main_pic_news($request);
要:
$this->upload_main_pic_news($request);
upload_main_pic_news()
是一个类方法,而不是全局范围内的函数。
希望这有帮助!