返回不在ajax结果中工作

时间:2016-06-02 21:01:26

标签: php ajax laravel

此代码中的返回不起作用 -

public function articleImage_1_Refresh(){
    $article_id = trim(Input::get('article_id'));
    $article_id = Crypt::decrypt($article_id);
    $singleData = DB::table('articles')
        ->where('id',$article_id)
        ->get();
    $image_1 = $singleData[0]->image_1;
    //return $image_1;
    return '<img id="article_image_1" class="img-responsive custom_margin_auto" src="{{URL::asset('images/articles/'.$image_1)}}" alt="Article Image 1"></img>';
}

将在 -

中使用

success:function(result){ // you wrote here response
    alert (result);
    $('#article_image_1_container').html(result);
}

返回行中存在语法错误,但无法弄清楚。 请帮忙。

1 个答案:

答案 0 :(得分:0)

success:function(result) JavaScript不正确。试试var success = function(result)

下次,尝试查看控制台并找出究竟是什么引发了语法错误。它比粘贴代码更快:)。