问题标签 [assign]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
311 浏览

c - The idea of C array in matlab

Is it possible to apply the idea of array in C to MATLAB For example, if we have Double array[10]; and if we want to assign a value we write for example Array[5]=2;

Is there any way to write equivalent one in MATLAB ?

0 投票
2 回答
28745 浏览

arrays - Fortran:初始化数组并为其赋值

为了在Fortran中对数组进行初始化和赋值,我们执行以下操作:

初始化:

如果我们只使用

如果我们这样做怎么办:

也适用于以下情况:

我们更喜欢这样做:

我们不确定,所以希望您为您喜欢的每一个提供一些理由

0 投票
1 回答
3272 浏览

php - 从文本框 php 中获取值

我尝试从文本框中获取值,但失败了。这是我的代码。你想要的是从文本框中获取值并将值与我数据库中的值匹配

0 投票
1 回答
5549 浏览

php - 从文本框 php 中获取值并与数据库匹配

我想创建一个表单并将表单的值与数据库匹配。我已经尝试过,但我失败了并且有一个奇怪的错误。CSRF 状态令牌与提供的不匹配。我是新手,需要一些帮助

0 投票
4 回答
48291 浏览

javascript - 在 Javascript 中为 JSON 对象赋值

这就是我试图通过 JavaScript 以点或 [ ] 表示法构建的内容:

现在如果 'item1' 是变量名itemName

这有效:
var shoppingCart = {};
shoppingCart[itemName] = itemName;
alert(shoppingCart.item1);

哪个返回item1

但这不起作用:
1 var shoppingCart = {};
2 shoppingCart[itemName]['description'] = 'This is Item #1';

JS 在第 2 行就死了,为什么?以及如何将描述值分配给“描述”?

我会这样做:

...但它实际上是 keyitemName而不是item1.

0 投票
3 回答
24905 浏览

android - 这是错的吗?TextView displayTextView = (TextView)findViewById(R.id.DisplayTextView);

大家,我是android开发的新手。现在我有一个自己无法解决的问题。下面的代码有什么问题(尤其是代码中标记的行)?

MainActivity.java:

运行,我在 AVD 中收到一条消息:应用程序已意外停止。请再试一次。但是,如果我在声明后不立即分配 displayTextView,IOW 我将代码更改如下,那么一切顺利。

为什么?这两个代码有区别吗?

0 投票
2 回答
4713 浏览

php - 将 jquery 值传递给 php 变量

我是菜鸟,所以希望你能提供帮助!

我有以下 jquery 代码:

然后它会在页面的 HTML 中显示我想要的值:

我想要的是将值传递给 PHP 变量,以便我可以在 MySQL 查询中使用该信息。我该怎么做?它在 WordPress 中,所以没有单独的文件

谢谢

0 投票
3 回答
162 浏览

ios - A tool in Xcode to check wether a function retains or not?

I'm currently working on an iOs application, and there is this one thing that is such a pain in the... well, a pain anyway : I always have to check the documentation to know wether an object property is retained or not (for instance, the setDelegate of the UITextField assigns the delegate and doesn't retain it, whereas the setFont function retains... https://developer.apple.com/library/ios/#documentation/uikit/reference/UITextField_Class/Reference/UITextField.html)

It's... a pain. Is there a way to know such a thing directly in Xcode ?

Thanks in advance

0 投票
4 回答
12592 浏览

arrays - 更新 Matlab 结构数组的每个元素中的一个字段

假设我有一个 struct array arr,其中每个元素都有一堆字段,包括一个名为val. 我想将每个元素的val字段增加一些常数,如下所示:

这显然有效,但我觉得应该有一种方法可以在一行代码中做到这一点(并且没有 for 循环)。我想出的最好的是两行,需要一个临时变量:

有任何想法吗?谢谢。

0 投票
5 回答
2709 浏览

java - 无法将 getBytes() 分配给字节数组

我完全被难住了..似乎有一个简单的解决方案

引发以下错误: