So I have a form with some vue.js data like
<div class="form-group">
<label class="form-label" for="field_description">Ontology Version</label>
<input type="text" name="ontology-version" class="form-control" disabled :value="ontology">
</div>
When I submit the form by clicking the submit button, there's no data for the ontology-version in the POST request.
I have a submit button like this <button type="submit" class="btn btn-primary ml-auto">Save</button>
Also, When I inspect the element on chrome, I see that no value is set

divelement. Tip: Avoid using images. and by the way, you are sending a request to10.10.10.10... does that address even exist? Look in network tab in dev tools and see what the request/response looked likeontology-versioninput is disabled, so it's not included in the form data. Usereadonlyinstead ofdisabled.