VueJS-在字符串中插入字符串

时间:2018-08-28 16:38:16

标签: variables vuejs2 eval bind string-interpolation

在VueJS中,是否可以在模板或脚本中在字符串内插入字符串 ?例如,我希望以下内容显示1 + 1 = 2而不是1 + 1 = {{ 1 + 1 }}

<template>
    {{ myVar }}
</template>

<script>
    export default {
        data() {
            "myVar": "1 + 1 = {{ 1 + 1 }}"
        }
    }
</script>

编辑:为了更好地说明我为什么需要这样做,这是我的实际数据:

section: 0,
sections: [
    {
        inputs: {
            user: {
                first_name: {
                    label: "First Name",
                    type: "text",
                    val: ""
                },
                ...
            },
            ...
        },
        questions:  [
            ...
            "Nice to meet you, {{ this.section.inputs.user.first_name.val }}. Are you ...",
            ...
        ]
    },
    ...
],

this.section.inputs.user.first_name.val将由用户定义。虽然我可以将问题属性重建为计算属性,但我希望保持现有数据结构不变。

1 个答案:

答案 0 :(得分:0)

我从https://forum.vuejs.org/t/evaluate-string-as-vuejs-on-vuejs2-x/20392/2找到了所需的解决方案,该解决方案提供了有关JsFiddle的有效示例:https://jsfiddle.net/cpfarher/97tLLq07/3/

<template>
    <div id="vue">
        <div>
            {{parse(string)}}
        </div>
    </div>
</template>

<script>
    new Vue({
        el:'#vue',
        data:{
            greeting:'Hello',
            name:'Vue',
            string:'{{greeting+1}} {{name}}! {{1 + 1}}'
        },
        methods:{
            evalInContext(string){
                try{
                    return eval('this.'+string)
                } catch(error) {
                    try {
                        return eval(string)
                    } catch(errorWithoutThis) {
                        console.warn('Error en script: ' + string, errorWithoutThis)
                        return null
                    }
                }
            },
            parse(string){
                return string.replace(/{{.*?}}/g, match => {
                    var expression = match.slice(2, -2)
                    return this.evalInContext(expression)
                })
            }
        }
    })
</script>