Vuejs v-model escape automatically html entities

余生长醉 提交于 2020-07-09 05:43:08

问题


I'm trying to display some html entities in a form text input, but v-model seems escaping them.

Is there something I need to write to make v-model displaying correctly html entities?

my sample code is

<el-input v-model="data" readonly="readonly"></el-input>

I know about v-html but I prefer keep using v-model due the automatic two-way binding.

UPDATE

Maybe I expressed myself wrong, I want to display the character, not the html entity, so instead 49.42&#8377; i need to display 49.42₹.


回答1:


If you v-model a computed that interprets HTML entities, I think you get the effect you want. You can type in entity values and it will interpret them correctly. However, it might prematurely turn &#8 into a different character; you have to type #8377; and then go back in and insert the &.

new Vue({
  el: '#app',
  data: {
    a: '49.42&#8377;'
  },
  computed: {
    asText: {
      get() {
        return this.toText(this.a);
      },
      set(newValue) {
        this.a = newValue;
      }
    }
  },
  methods: {
    toText(html) {
      const div = document.createElement('div');

      div.innerHTML = html;
      return div.textContent;
    }
  }
})
<link href="//unpkg.com/element-ui@1.0.0-rc.3/lib/theme-default/index.css" rel="stylesheet"/>
<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/element-ui/lib/index.js"></script>

<div id="app">
  <el-input v-model="asText"></el-input>
  {{a}}
  <div v-html="a"></div>
</div>


来源:https://stackoverflow.com/questions/53282349/vuejs-v-model-escape-automatically-html-entities

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!