Jan 23, 2021 11:26 AM
I have created a Base and have set a column (videoImage) to use an Attachment. Next I have uploaded an image. In my VueJS app I have the following however the path of the image is incorrect and the image won’t render.
<img v-bind:src="record['fields']['videoImage']" class="img-responsive" alt="Video">
Therefore, is there a way to get the URL of any item such as documents, images etc that are uploaded as attachments or bind the correct path in Vue?
Jan 23, 2021 11:50 AM
This is an object, not a URL. A file attachment field object looks like this:
As such, you need to identify the URL field. e.g., …
record['fields']['videoImage'][0].url
Jan 24, 2021 10:23 AM
That’s amazing Bill. Thank you very much for your help, it’s very much appreciated.