2

好吧,我能够正确显示图像,但它仍然无缘无故地在控制台中给我 javascript 错误。这是我的代码:

获取类别:

fetchCategory: function(){

            this.$http.get('get_category').then(function(response){
                this.$set('categories',response.json());
            });
        }

这是显示类别的表格:

<table class="table table-bordered table-responsive table-striped example1">
    <thead>
        <tr>
            <th>ID</th>
            <th>Category Name</th>
            <th>Icon</th>
            <th>Action</th>
        </tr>
    </thead>
    <tbody>
        <tr v-for="category in categories">
            <td>@{{ category.id }}</td>
            <td>@{{ category.name }}</td>
            <td><img src="{{url('/')}}/@{{ category.icon }}" width="150px"></td>
            <td>Edit | Delete</td>
        </tr>
    </tbody>
</table>

它正确显示图像,但是 javascript 控制台仍然显示 2 404 错误,指示图像的 url GET http://localhost/project/%7B%7B%20category.icon%20%7D%7D 404 (Not Found)

我应该忽略这个错误吗?或者有没有其他方法可以在图像路径中包含基本 url?

4

2 回答 2

3

您应该绑定src属性:

<img :src="'{{ url('/') }}/' + category.icon" width="150px">
于 2016-07-09T12:04:16.160 回答
0

试试这样:

<td>{!!HTML::image('path/category.icon')!!}</td>
于 2016-07-09T09:52:33.027 回答