我使用Mandrill-dotnet 2.4.1.0 从我的 C# 应用程序发送事务电子邮件。我经常收到一条错误消息:发布序列化错误:messages/send-template.json。
检查 Mandrill 时,我尝试发送的电子邮件已发送,因此响应中的数据可能存在问题。有时我可以看到错误发生时存在积压,但我不能确定这就是问题所在。我很难找出这个错误的根源是什么,并且希望能找到解决此问题的方法,因为似乎很难找到 Mandrill-dotnet 代码中的实际错误。
最好的问候托比亚斯
我有一个可能很愚蠢的问题.我试图迭代一个平面的顶点.为什么不这样做呢?我得到一个"未捕获的TypeError:无法设置属性'x'未定义"错误.
plane = new THREE.Mesh(new THREE.PlaneGeometry(100,100, 10, 10), planeMat);
//Set up heightmap for plane
var vertices = plane.geometry.vertices;
var l = vertices.length;
for ( var i = 0;i < l;i++){
vertices[i].position.x = Math.random()*50;
}
scene.add(plane);
Run Code Online (Sandbox Code Playgroud)
在上面的循环中呈现http://jsfiddle.net/sJESN/取消注释注释行的整个代码以获取错误.
感谢您的帮助,我已经疯狂了3天!对不起任何noob错误.