在Python函数中,字典未返回键的完整值。

huangapple go评论67阅读模式
英文:

On python function the dictionary is not return the full value of the key?

问题

以下是您提供的代码的翻译部分:

App view code:

def home(request):
    text1 = "示例名称"
    temp_dict = {'txt1': text1, 'txt2': '您的姓名'}

    return render(request, 'Second2_app/index.html', context=temp_dict)

index html code:

<div>
    <label for="name">用户名</label>
    <input
        id="name"
        type="text"
        placeholder={{txt1}}
        name="name"
        required
    />
</div>

项目文件中我定义的URL:

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('Second_app.urls')),
    path('Customers/', include('Second_app.urls')),
]

这些是您代码中的部分内容的中文翻译。如果您有任何其他需要,请随时提问。

英文:

App view code:


def home(request):
    # return HttpResponse(&quot;&lt;h1&gt; This is Home Page &lt;/h1&gt;&quot;)
    text1 = &quot;Example Name&quot;
    temp_dict = {&#39;txt1&#39;: text1, &#39;txt2&#39;: &#39;Your Name&#39;}

    return render(request, &#39;Second2_app/index.html&#39;, context=temp_dict)

index html code:

&lt;div&gt;
        &lt;label for=&quot;name&quot;&gt;User name&lt;/label&gt;
        &lt;input
               id=&quot;name&quot;
               type=&quot;text&quot;
               placeholder={{txt1}}
               name=&quot;name&quot;
               required
               /&gt;
      &lt;/div&gt;

url I define on project file

urlpatterns = [
    path(&#39;admin/&#39;, admin.site.urls),
    path(&#39;&#39;, include(&#39;Second_app.urls&#39;)),
    path(&#39;Customers/&#39;, include(&#39;Second_app.urls&#39;)),
]

I am expecting why my desire output is not shown in the html file.......

答案1

得分: 1

我的问题解决了,这是我的愚蠢错误。

&lt;div&gt;
 &lt;label for=&quot;name&quot;&gt;用户名&lt;/label&gt;
 &lt;input id=&quot;name&quot; type=&quot;text&quot; placeholder=&quot;{{txt1}}&quot; name=&quot;name&quot; required /&gt;
&lt;/div&gt;
英文:

Got my solution it was a silly mistake from me.

&lt;div&gt;
 &lt;label for=&quot;name&quot;&gt;User name&lt;/label&gt;
 &lt;input id=&quot;name&quot; type=&quot;text&quot; placeholder=&quot;{{txt1}}&quot; name=&quot;name&quot; required /&gt;
&lt;/div&gt;

huangapple
  • 本文由 发表于 2023年5月18日 13:41:39
  • 转载请务必保留本文链接:https://go.coder-hub.com/76278035.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定